解决 CMD 无法查询python 版本的问题
问题描述: 我们第一次安装和学习Python后, 需要查询Python出现下图的故障,无法查询到python版本和无法在CMD 里面运行
C:\Windows\system32>python
‘python’ is not recognized as an internal or external command,
operable program or batch file.
C:\Windows\system32>
解决办法:
1, 此问题发生的原因是安装python 时没有在option 选项是选择添加环境变量
2,添加环境变量
-
在电脑C盘查找Python安装到哪里, 直接C盘下搜索Python,找到Python 路径。 例如我的:C:\Users\jxiong\AppData\Local\Programs\Python\Python38
-
在桌面“计算机” 点击鼠标右键,打开属性–计算机高级设置–环境变量
-
双击system 参数下的PATH, 然后添加新一条路径,把刚才步骤一里面的安装路径添加到此,点击保存就可以了
-
重新打开CMD 窗口,输入PYTHON ,就能查询版本了
C:\Windows\system32>python
Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.