用pip安装依赖包时默认访问?
https://pypi.Python.org/simple/
但是很多包因为网速问题经常安装不上,这时候就需要选择国内的一些安装源安装相应的包
豆瓣?http://pypi.douban.com/?
中国科学技术大学http://pypi.mirrors.ustc.edu.cn/simple/?
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/?
指定Pip install的安装源:
第一种方法:在命令行通过-i参数指定源
pip install Numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
第二种方法:将指定源镜像地址写入配置文件
Windows:资源管理器中,打开%HOMEPATH%,然后在该目录新建一个名为pip的文件夹,在pip文件夹中创建一个pip.ini文件,用记事本写入配置如下:
例如:C:\Users\fxl\pip\pip.ini
pip.ini配置的主要一些配置:文章来源:https://www.toymoban.com/news/detail-426479.html
[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun.com/pypi/simple/文章来源地址https://www.toymoban.com/news/detail-426479.html
到了这里,关于指定Pip install的安装源的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!