pip包管理工具 常用指令
pip install XXX
pip freeze 已经安装了哪些包
windows下的安装虚拟环境
1.先安装virtualenv
λ pip install virtualenv
C:\Users\Administrator\Desktop\requests
2.在需要的目录里创建一个自己命名的虚拟环境名称
λ virtualenv new_env
Using base prefix 'c:\\python'
New python executable in C:\Users\Administrator\Desktop\requests\new_env\Scripts\python.exe
Installing setuptools, pip, wheel...done.
3.创建成功后启动环境
λ cd new_env\Scripts\
λ activate
(new_env) λ
显示这一步说明成功了,已经在(new_env)这个新的虚拟环境中了。
进去了新的环境中,需要在里面重新安装一些包。
(new_env) λ pip install requests
Collecting requests
C:\Users\Administrator\Desktop\requests\new_env\Scripts
(new_env) λ pip freeze
certifi==2019.6.16
chardet==3.0.4
idna==2.8
requests==2.22.0
urllib3==1.25.3
(new_env) λ python
Python 3.8.0a1 (tags/v3.8.0a1:e75eeb00b5, Feb 3 2019, 20:47:39) [MSC v.1916 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information.
最后启动交互式命令就可以了
退出虚拟环境命令
deactivate
链接:https://blog.csdn.net/u012814856/article/details/81137368
网友评论