Python无法使用pip安装远程包的解决方案:修改镜像源

1.永久修改方法:

Linux下,修改 ~/.pip/pip.conf (没有就创建一个), 修改 index-url至tuna,内容如下:

 [global]

 index-url = https://pypi.tuna.tsinghua.edu.cn/simple

windows下,直接在user目录中(当前用户)创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下:

 [global]

 index-url = https://pypi.tuna.tsinghua.edu.cn/simple

2.临时修改方法

在命令中临时修改

1pip3 install -i  https://pypi.tuna.tsinghua.edu.cn/simple   pillow


原文:https://www.cnblogs.com/andy9468/p/9982154.html

你可能感兴趣的:(Python无法使用pip安装远程包的解决方案:修改镜像源)