VS Codeにpython=をインストールしましたが、python
コマンドを使用してpythonコードを実行できません。
デフォルトではpython
コマンドを使用しているようで、認識されません。
右クリックしてRun Code
を選択すると、エラーが表示されます:
'python' is not recognized as an internal or external command, operable program or batch file
python main.py
を手動で実行する場合も同様です。
昇格したPowerShellを開いてpython
を実行すると、次のエラーが表示されます。
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
+ ~~~~~~
+ CategoryInfo : ObjectNotFound: (python:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
py
コマンドは使用しませんが、認識します。 そして、手動でpy main.py
を呼び出すと、動作します。
手動で>py main.py
を実行すると、Goodbye, World!
が書き込まれます
CodeRunnerの右クリック機能(Run Code
)を使用して、VS Codeでコンパイル/実行するにはどうすればよいですか?
私はすでにPythonフォルダーとPATH内のそのScriptsフォルダーを持っています。
VS Code 1.27.2
を使用しており、マシンにpython 3.7.0
をインストールし、環境変数を自動的に追加するためのインストーラーチェックボックスをチェックしました。 (パスは大丈夫です)
また、VS Codeにms-python.python
およびtht13.python
およびformulahendry.code-runner
拡張機能をインストールしました。
これは私のmain.py
コードです:
print("Goodbye, World!")
私はただインストールする必要があったことが判明しましたコンピューターを再起動しますms-python.python
およびtht13.python
およびformulahendry.code-runner
VSコードの拡張機能とScripts
にpythonのPATH
フォルダーを追加しました。
py
とpython
の両方のコマンドは、cmd
やRun Code
右クリックメニュー。
Python拡張機能をインストールし、PATHを変更してPythonとそのスクリプトフォルダーを追加すると、PCが役立ちます。
PythonのWindowsインストーラーは、デフォルトでパスにpython
を配置しません(インストール中に追加するためのチェックボックスがあります)。 Select Interpreter
および必要なインタープリターを選択します(拡張機能はレジストリを介してそれらを見つけます)。