pip install换源

pypi换源总结

由于pypi源默认为国外源,经常被墙导致不可用,所以安装软件时pip源最好更换为国内资源

常用国内源:

豆瓣:http://pypi.douban.com/simple/
清华:https://pypi.tuna.tsinghua.edu.cn/simple

使用方法

直接使用:
在安装软件时使用带源地址的安装方法,以安装keras为例输入如下命令:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple keras

更换python安装目录下的源地址:将…\Lib\site-packages\pip\models\index.py文件中的PyPI值修改为你希望的国源链接。如将其修改为清华源:

注释掉:PyPI = Index(‘https://pypi.python.org/’)
修改源:PyPI = Index(‘https://pypi.tuna.tsinghua.edu.cn/simple’)

修改后安装keras命令:pip install keras

Anaconda 清华镜像使用

参考: https://mirrors.tuna.tsinghua.edu.cn/help/anaconda
运行以下命令:

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

你可能感兴趣的:(pip install换源)