[ 个人推荐清华大学pypi镜像站(https://mirrors.tuna.tsinghua.edu.cn/help/pypi/),每五分钟同步一次,资源丰富,下载速度很快 ] :
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
豆瓣:http://pypi.douban.com/simple/
pip install -i http://pypi.douban.com/simple/ numpy
#如果上一个提示不受信任,就使用这个,此参数“--trusted-host”表示信任
pip install -i http://pypi.douban.com/simple/--trusted-host pypi.douban.com
进入pip.ini文件,并添加配置如下:(清华源)
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn # trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任
修改完成后保存,启动cmd,使用 " pip install xxx "(xxx为你要下载的包名),即可默认使用国内源下载。
#我下载的是python的numpy函数库
pip install numpy
==》报错解决
#此命令有可能报错:文件拒绝访问,需要以管理员权限运行cmd窗口
#或者下载失败,可能是被他人挤占导致失败,可以再次输入命令重试即可
切换目录,并新建 .pip 文件夹
cd ~/.pip
mkdir ~/.pip
进入 .pip 文件夹,并新建 pip.conf 文件
cd ~/.pip
touch pip.conf
在 pip.conf 文件中添加配置
vi pip.conf
==>(添加信息)
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn # trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任
保存退出即可,然后下载你需要的资源。