有的需要先对pip进行升级才能更换源:
python -m pip install --upgrade pip
方式一:
临时使用
pip install ***(库的名字) -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
方式二:
永久替换
1:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
在此目录下创建文件夹-->pip-->创建txt文件-->修改后缀为-->pip.ini-->保存以下内容(可自行添加需要的镜像源)
[global]
index-url = https://pypi.mirrors.ustc.edu.cn/simple/
extra-index-url = https://pypi.mirrors.ustc.edu.cn/simple/
https://mirrors.aliyun.com/pypi/simple/
https://pypi.tuna.tsinghua.edu.cn/simple/
http://pypi.mirrors.ustc.edu.cn/simple/
https://pypi.org/simple/
trusted-host = pypi.mirrors.ustc.edu.cn
pypi.mirrors.ustc.edu.cn
mirrors.aliyun.com
pypi.tuna.tsinghua.edu.cn
pypi.mirrors.ustc.edu.cn
pypi.org
查看镜像源:
win+R-->cmd-->键入以下命令-->pip config list-->查看当前源
创建虚拟环境项目
python -m venv env-0(env-0是虚拟环境的名称)
激活虚拟环境
激活虚拟环境
在cmd中 cd到创建环境的Scripts
E:\python\python\A-envirment\env-0\Scripts
键入activate.bat 回车
即可激活
(env-0) E:\python\python\A-envirment\env-0\Scripts>
安装对应的库即可
查看虚拟环境中已有的库
(env-0) E:\python\python\A-envirment\env-0\Scripts>pip list
Package Version
---------- -------
pip 22.2.2
setuptools 57.4.0
退出虚拟环境
键入deactivate.bat 回车
首先激活已有的虚拟环境,可参考步骤二
(env-0) E:\python\python\A-envirment\env-0\Scripts>
然后键入以下命令对已有的环境进行打包。生成requirement.txt文件
pip freeze > requirements.txt
然后在自己想要的目录下创建一个基础的环境,
python -m venv env-1 (env-1是虚拟环境的名称)
将生成的requirement.txt复制到新建的目录下,键入以下命令即可将已有的环境进行复制
pip install -r requirements.txt