pip国内源集合
Posted arno-liu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pip国内源集合相关的知识,希望对你有一定的参考价值。
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
修改源方法:
临时使用:
可以在使用pip的时候在后面加上-i参数,指定pip源
例如: pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple
永久修改:
linux:
修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple
windows:
直接在user目录中创建一个pip目录,如:C:Usersxxpip,新建文件pip.ini,内容如下
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple
若要装具体版本,则在包名tensorflow后加上 == 版本号 例如:
1
|
conda install tensorflow = = 1.9 . 0 |
ps:插一句,当你在找其他的一些conda源、pip源、国内镜像源都没有的包的时候,你可以在pypi.org上下载到你所需要的包,然后本地安装 :
pip install 本地路径名.压缩格式
以上是关于pip国内源集合的主要内容,如果未能解决你的问题,请参考以下文章