Python更改pip源
程序员文章站
2023-11-06 23:46:10
Python 在Windows下和Linux下更改pip源的方法。 ......
python更改pip源
pip源有以下
新版ubuntu要求使用https源,要注意。
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
windows下修改方式:
直接在user目录中创建一个pip目录,如:c:\users\xx\pip,新建文件pip.ini
文件内容为:
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host=pypi.tuna.tsinghua.edu.cn
以清华源为例
linux下修改方式:
在用户家目录下的 .pip 目录下创建一个 pip.conf 文件 , 如果没有 .pip 目录自行创建。
mkdir ~/.pip cd ~/.pip touch pip.conf #编辑pip.conf文件 sudo gedit ~/.pip/pip.conf
将以下文件复制到 pip.conf 内
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host=pypi.tuna.tsinghua.edu.cn
以清华源为例
推荐阅读
-
Python更改pip源
-
PyCharm中创建项目时,在所创建的python虚拟环境下的pip失效
-
Python下的常用下载安装工具pip的安装方法
-
Pycharm下载pyinstaller报错:You should consider upgrading via the 'python -m pip install --upgrade pip' command的解决方法
-
Python批量更改文件名的实现方法
-
Python豆瓣源镜像
-
Python在for循环中更改list值的方法【推荐】
-
解决python "No module named pip"的问题
-
Pycharm下载pyinstaller报错:You should consider upgrading via the 'python -m pip install --upgrade pip' command的解决方法
-
解决Ubuntu pip 安装 mysql-python包出错的问题