0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【個人メモ】VSCODEでpythonスクリプトを実行できなかった時の対処法

Posted at

事象

Pythonのインストールと、vscodeにpython拡張機能をインストールした状態でpythonスクリプトを実行したところ、
以下エラーメッセージが出た。

PS C:\WebApp\portfolio\0030_scraping> & %PythonPath% c:/WebApp/portfolio/0030_scraping/Scraping.py
& : 用語 '%PythonPath%' は、コマンドレット、関数、スクリプト ファイル、または操作可能なプログラム
の名前として認識されません。名前が正しく記述されていることを確認し、パスが含まれている場合はその
パスが正しいことを確認してから、再試行してください。
発生場所 :1 文字:3
+ & %PythonPath% c:/WebApp/portfolio/0030_scraping/Scraping.py
+   ~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (%PythonPath%:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

原因

vscodeの設定にて「python.defaultInterpreterPath」の値にpython.exeの配置フォルダパスが指定されていなかった。

対応方法

「設定」の「python.defaultInterpreterPath」にpython.exeの配置フォルダパスを指定する。
cap.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?