Pipenv commonly used commands

Pipenv commonly used commands

command Explanation
pipenv --venv View Contents of this virtual environment, easy to add virtual environment in directory pycharm
pipenv --rm Delete the virtual environment
pipenv shell Activating virtual environment
pip list View the virtual environment which installation package
pipenv graph You can view dependencies
pipenv install flask Installation Module
pipenv uninstall flask Uninstall module
exit() Exit Virtual Environment
pip freeze > requirements.txt Export virtual environment all depend on the package name
pip install -r requirements.txt All installation project depends module
Published 29 original articles · won praise 19 · views 1318

Guess you like

Origin blog.csdn.net/s1156605343/article/details/104615510