Windows 10 上的 Python 3.8 路径



我在Windows 10中设置Python环境时遇到问题。 Python 安装的默认路径是C:Users<user>AppDataLocalProgramsPythonPython38-32python.exe

但是当我在CMDPowerShell中运行时找不到 Python 命令。 知道吗?

您需要将python安装路径添加到环境变量中,您可以在其中找到系统路径变量,您可以添加位置,后跟";"和安装路径。

或者简单地打开Python IDE,然后按照此代码进行操作。

import sys
print(sys.path) #see if u can find ur installation location path in the output if not
sys.path.append('enter your installation path here')

享受!! 希望它解决了你的问题。

相关内容

  • 没有找到相关文章

最新更新