学习python你不得不知道的清华镜像
在这你可以找一些难以下载的软件清华镜像站
python 安装模块时 你用
pip3 install 模块
太慢了,有时候下载还老出错,从清华镜像安装,快的一批
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 模块名
更新
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 模块名 --upgrade
更新pip
# 设置使用清华镜像安装pip,之后用pip安装其他包时优先使用清华镜像
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 跟新pip
python -m pip install --upgrade pip
# 如果上述还不能更新pip 加上下面直接从pypi上下载更新,记得加上user
python -m pip install --upgrade pip -i https://pypi.douban.com/simple --user
或者直接去网址下载模块的whl文件,然后进行安装,
网址如下
https://pypi.tuna.tsinghua.edu.cn/simple/模块名/
python对于whl文件的模块的安装
pip install xxx.whl
在此之前确保安装了wheel,如果没按,可以pip3 先安装
pip install wheel