venv -- python 创建虚拟环境
作者:互联网
- where python
- cd python3.6\Scripts # 为了在别的地方也能使用workon
- pip install virtualenv
- pip install virtualenvwrapper 或者 virtualwrapper-win
- mkvirtualenv 虚拟环境名
mkvirtualenv --python=D:\python3.6\python.exe 虚拟环境名 # 指定安装的Python版本 - workon # 查看虚拟环境列表
- deactivate # 退出虚拟环境
- rmvirtualenv 虚拟环境名 # 必须先退出虚拟环境内部才能删除当前虚拟环境
- cdvirtualenv 虚拟环境名 # 进入虚拟环境所在目录
- pip freeze 或 pip list # 查看虚拟环境中安装的包
- pip freeze > requirements.txt # 收当前环境中安装的包
- pip install -r requirements.txt # 安装项目使用的模块
标签:--,python,虚拟环境,install,pip,txt,安装 来源: https://www.cnblogs.com/mwj-blog1/p/16564126.html