- where python
- cd python3.6\Scripts # 为了在别的地方也能使用workon
- pip install virtualenv
- pip install virtualenvwrapper 或者 virtualwrapper-win(windows)
- 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 # 安装项目使用的模块
posted @
2022-08-08 21:51
我叫好名字
阅读(
82)
评论()
编辑
收藏
举报