新版pycharm更换国内源问题

  • 最近更新pycharm以后,发现以前在“文件-设置-project-***-python interpreter”处无法更换国内源,旧版的那个按钮消失了

  • 网上查了一下,需要到python packages处修改源

  • 弄完发现,还是不行,在新建django项目时,安装django仍然报错:“ Could not find a version that satisfies the requirement django (from versions: none)”
  • 需要命令行方式:
    更换清华源,并选择相信
    pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/  –trusted-host pypi.tuna.tsinghua.edu.cn

其他源:

阿里云 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.ini文件修改

[global] index-url = http://mirrors.aliyun.com/pypi/simple/

改成https

[global] index-url = https://mirrors.aliyun.com/pypi/simple/

  • 终于成功了!

You may also like...

发表回复