How can I make a list of installed packages in a certain virtualenv?

后端 未结 9 1355

You can cd to YOUR_ENV/lib/pythonxx/site-packages/ and have a look, but is there any convenient ways?

pip freeze list all the

9条回答
  •  不思量自难忘°
    2020-12-02 12:18

    list out the installed packages in the virtualenv

    step 1:

    workon envname

    step 2:

    pip freeze

    it will display the all installed packages and installed packages and versions

提交回复
热议问题