这篇文章只是用来记录本人电脑无法使用pip安装python库的情况,个例性极强不具有参考
一编:
#使用无法使用python进行安装库
python -m pip install numpy
注意不能连接魔法,不能设置代理(河南),在别的地方可能需要
二编:
不要没事做就去挂魔法,老老实实用国内镜像就行了
永久设置代理在programdata中新建pip文件夹,在pip文件夹中新建pip.ini,在其中加上以下内容:
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
暂时设置的话直接输入以下语句:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple(可以换成别的网站)
国内总代理如下:
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣 http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
三编:
在电脑里面安装多了不同版本的编译器,导致识别出现问题
解决问题在此贴:点我