一、问题描述
如下图,在PyCharm中使用自带的Python终端运行源代码文件时,提示出错:
D:\Program Files\Python3.10.0\python.exe: can’t open file ‘D:\Desktop\Python Security Chapter 4\Whois’: [Errno 2] No such file or directory
翻译:python.exe找不到文件"Whois"
使用的命令为:
python Whois Searching.py
报错截图如下:
二、解决方法
出现上述问题的原因是,文件名没有加引号,导致解析文件名时只识别了Whois单词。将文件名《Whois Searching.py》加上引号,问题解决。文章来源:https://www.toymoban.com/news/detail-784624.html
三、后续问题及解决方法
依旧报错:
D:\Program Files\Python3.10.0\python.exe: can’t open file ‘D:\Desktop\Python Security Chapter 4\Whois Searching.py’: [Errno 2] No such file or directory
从报错信息中看出,这次将文件名解析正确了,但仍旧提示找不到该文件。
报错原因:源代码文件不在当前目录中。
解决方法:如下图,先cd进入正确的目录,再次运行,报错消失,运行成功。
文章来源地址https://www.toymoban.com/news/detail-784624.html
到了这里,关于【Python终端报错】“python.exe: can‘t open file”【及解决方法】的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!