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 5 years have passed since last update.

pythonで"Unable to access file: No such file or directory"

Posted at

現象

hoge.pyがカレントディレクトリに存在しているにも関わらず、

$ python3 hoge.py
$ Unable to access file: No such file or directory

と言われる。

原因

アクセスできていないのは、hoge.pyではなく、「hoge.pyスクリプト内でアクセスしようとしているファイル」。画像とか。

対処

スクリプト内のファイル名を指定している箇所で
・拡張子忘れ
・拡張子違い(.jpgと.JPGなど)
・ファイルパス
等の間違いがないか確認する

判別

そもそも.pyファイルが無いときのエラーメッセージは

python3: can't open file 'hoge.py': [Errno 2] No such file or directory

なので見分けがつく。

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?