python虚拟环境的安装以及移动目录虚拟环境失效的解决办法

1. 安装virtualenv
pip install virtualenv
2.创建虚拟环境test1
python -m venv test1
3.激活
.\test1\Scripts\activate
4.退出
deactivate
5.环境导出
pip freeze > requirements.txt
6.环境导入
pip install -r requirements.txt
7.移动目录环境失效的解决办法

步骤🎈:

找到python的安装路径

win+R,cmd,where python

C:\Users\meizi>where python
D:\codeSoftware\python\python.exe

复制python.exe处在的文件目录,粘贴到test1环境下的配置文件pyvenv.cfghome路径

home = D:\codeSoftware\python
include-system-site-packages = false
version = 3.8.7

步骤🎈🎈:

删掉script里面的pip.exe,重新安装

python -m pip install -u pip
Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐