在PyCharm中执行Install packaging tools程序时报错“Cannot set up a python SDK at Python 3.9 (C:\Users\ASUS\AppData\Local\Microsoft\WindowsApps\python.exe).
The SDK seems invalid.”
应该如何解决?
一、问题描述
PyCharm中下载类库:File——Settings——Project Desktop——Python Interpreter——add并设置下面的内容——然后点击“+”进行添加包
二、解决方案
1、点击“add”
在这个界面选择存在的环境,因为环境已经存在,所有没必要重新创建新的环境,否则报错。替换为之前可以用的,即可。
原文链接:PyCham中安装包工具报错“Cannot set up a python SDK at Python 3.9”
(1)镜像源设置
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip config set install.trusted-host mirrors.aliyun.com
(2)镜像源地址
# pip国内镜像源:
# 阿里云 http://mirrors.aliyun.com/pypi/simple/
# 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
# 豆瓣 http://pypi.douban.com/simple
# Python官方 https://pypi.python.org/simple/
# v2ex http://pypi.v2ex.com/simple/
# 中国科学院 http://pypi.mirrors.opencas.cn/simple/
# 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
更换pycharm镜像源