我刚开始编码,并试图下载GUI,但终端一直给我这个错误r Python was not found; run without arguments to install from the Microsoft Store, or disable this shortcut from Settings > Manage App Execution Aliases.
我正在尝试使用以下命令安装它
python -m pip install --upgrade pip setuptools virtualenv
发布于 2020-12-18 06:24:00
您需要从以下位置下载python:
https://python.org
..。在安装时,请确保选中将Python添加到PATH的选项;
发布于 2021-02-28 21:58:09
找不到Python;运行时不带参数即可从Microsoft应用商店安装,或从设置>管理应用执行别名禁用此快捷方式。
1.检查您的python版本并确保其已安装在您的计算机上
2.检查路径变量
3.进入->“开始”,输入“管理应用程序执行别名”.Go并关闭"python“
干杯!这将为您工作:)
发布于 2020-12-30 02:12:41
我有一些问题。我使用下面的方法修复了这个问题。
复制Python的两个路径
C:\Users\Maninder\AppData\Local\Programs\Python\Python39 C:\Users\Maninder\AppData\Local\Programs\Python\Python39\Scripts
这些是安装python的路径。现在将此路径添加到您的环境变量中。将此路径放入系统变量中,而不是用户变量中。我使用的是用户变量,所以我面临着这个问题。
https://stackoverflow.com/questions/65348890
复制相似问题