关于python下载模块的超时错误 pip install
在下载python模块时常常出现超时错误
因为是外网,我们可以使用清华提供的镜像网址。
使用pip的时候加参数 -i https://pypi.tuna.tsinghua.edu.cn/simple ,这样他就会从镜像去安装。
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PyQt5
这个PyQt5 换成你想要的模块就行了!
在下载python模块时常常出现超时错误
因为是外网,我们可以使用清华提供的镜像网址。
使用pip的时候加参数 -i https://pypi.tuna.tsinghua.edu.cn/simple ,这样他就会从镜像去安装。
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PyQt5
这个PyQt5 换成你想要的模块就行了!