pip永久更换下载函数库的镜像源方式: 在python安装文件夹下,找到>lib文件夹>site-packages文件夹>pip文件夹>models文件夹下的index.py,编辑修改其最后一句代码: PyPI = Index('https://pypi.python.org/') 以上代码修改为: PyPI = Index('https://pypi.tuna.tsinghua.edu.cn/')
还有一些版本的python的pip文件路径稍有不同,但修改是一样: 如:D:\python\Lib\site-packages\pip\_internal\models\index.py 原代码为: PyPI = PackageIndex( 'https://pypi.org/', file_storage_domain='files.pythonhosted.org' ) 修改为: PyPI = PackageIndex( 'https://pypi.tuna.tsinghua.edu.cn/', file_storage_domain='files.pythonhosted.org' )