python name is not defined,python3 --version显示“NameError:name'python3'is not defined”
时间: 2023-06-27 14:07:27 浏览: 1472
Python中对错误NameError: name ‘xxx’ is not defined进行总结
5星 · 资源好评率100%
这个错误通常是因为你的操作系统没有正确地配置环境变量。在终端中输入“python3”时,系统无法找到Python 3的可执行文件。
如果你使用的是Linux或MacOS操作系统,可以尝试使用以下命令来启动Python 3:
```
python3
```
如果你使用的是Windows操作系统,可以尝试在命令提示符或PowerShell中使用以下命令来启动Python 3:
```
py -3
```
如果你仍然遇到此错误,请尝试重新安装Python 3并确保在安装过程中正确设置了环境变量。
阅读全文