windows10 python3.8 pip环境的配置
0、快捷安装
pip install -r requirement.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install -r requirement.txt -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn
//.pip/pip.conf
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
1、python3.8配置pip3更换清华源环境,效果图1.
C:\Users\XXX-User\AppData\Roaming\pip
2、下载链接
python3.8环境下载链接: https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe
需要其它版本的python环境可自行下载:
其它版本的python下载链接:https://www.python.org/ftp/python
3、安装过程,按照默认方式,点击下一步,下一步默认安装即可,可参考果子老师的博客。
转载至:Python学习总结(一)—— 十分钟入门 - 张果 - 博客园 (cnblogs.com)
4、cmd命令行执行,设置默认
方法一:
python -m pip install --upgrade pip pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip config set install.trusted-host https://pypi.tuna.tsinghua.edu.cn // trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任
方法二:
pip安装包报错ERROR: Could not find a version that satisfies the requirement dnspython (from versions: none)
更换其它国内镜像源
pip install -r requirement.txt -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
5、安装成功后,如图1的效果。
参考资料:
pypi | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror
centos8/windows创建虚拟环境
python -m venv myenv
source myenv/bin/activate # Linux/macOS
myenv\Scripts\activate # Windows
pip install pyppeteer