修复 Windows 下 Python 环境变量不生效的问题

Posted on Wed, 25 Dec 2024 16:17:37 +0800 by LiangMingJian


BUG 描述

已在 Window10 上下载配置好 Python,但是在命令行 CMD 中使用 Python 命令时提示Python not found; run without arguments to install from the Microsoft Store,已确认 Python 的环境变量已配置。

Resolution

环境变量的优先级问题,由于 WindowsApp 的环境路径优先于 Python 的路径,因此当调用 Python 时,会优先询问 WindowsApp。调换两者路径即可解决。

进行调换后。

参考文件 1: 命令窗口不能使用Python