因为pip和conda大多数源都是国内的,需要换上国内的源
一、电脑环境
win10 专业版
二、pip
1、国内常见的源
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
2、使用方法:
例如:你想利用pip安装pyinstaller,可以在使用pip的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple
具体的命令为:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyinstaller
三、conda
1、代码使用清华的源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
依次运行上述三行代码,需要注意的是上述三行代码的每一行都没有任何结果,直接运行下一行即可。