Как исправить «CommandNotFoundException» в PowerShell при выполнении кода Python? - PullRequest
0 голосов
/ 12 октября 2019

Я начал курс по основам Python в Udemy и следовал инструкциям, чтобы выполнить первый код start.py в PowerShell. Я открыл PowerShell в той же папке, что и start.py.

PS C:\Users\burigs\Desktop\Desktop\Programming\Python\IntroToProgramming> python .\start.py
python : The term 'python' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ python .\start.py
+ ~~~~~~
    + CategoryInfo          : ObjectNotFound: (python:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...