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?

【VSCode】ターミナル上でのFileNotFoundError

Last updated at Posted at 2022-03-31

事象

VSCodeでPythonスクリプトを実行/デバッグ中、ファイルの読み込み操作エラー(FileNotFoundError)に出くわした。

実行環境

  • Windows10
  • Visual Studio Code 1.65.2
  • Python 3.9.12

原因

VSCodeターミナルのカレントディレクトリが、実行/デバッグ対象のPythonスクリプトが置かれているフォルダと一致していなかったため、相対パスによるファイルの参照ができていなかった。

対処

VSCode上で適切なプロジェクトフォルダ(Pythonスクリプトが配置されているフォルダ)を開くことで、ターミナルのカレントディレクトリを対応させる。

  1. [File(ファイル)]→[Open Folder...(フォルダーを開く)]からPythonスクリプトの配置されているフォルダを開く
  2. エクスプローラー(左サイドバー)からPythonスクリプトを選択して実行/デバッグする
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?