Preface
原文链接:[blog]https://blog.csdn.net/xiong1081/article/details/53688551)
正文
1.创建一个虚拟环境
D:\>mkdir test_venv
D:\>cd test_venv
D:\test_venv>python -m venv test
注意命令python -m venv test
,创建一个test的虚拟环境,生成目录形式如下:
test
│ pyvenv.cfg
│
├─Include
├─Lib
└─Scripts
2.启用虚拟环境
D:\test_venv>test\Scripts\activate.bat
(test) D:\test_venv>
执行那个activate.bat文件,启用后,提示符前面会出现虚拟环境的名字(test)。
3.pip在虚拟环境安装模块
首先查看目前虚拟环境已有的模块:
(test) D:\test_venv>pip list
pip (8.1.1)
setuptools (20.10.1)
You are using pip version 8.1.1, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
提示pip有新版本,按提示python -m pip install --upgrade pip
命令更新就好,千万别用pip install --upgrade pip
,这样会破坏pip。
4.退出虚拟环境
(test) D:\test_venv>test\Scripts\deactivate.bat
D:\test_venv>
注意‘>’.......
网友评论