Python错误集锦:python: can’t open file ‘hello’: [Errno 2] No such file or directory
错误提示:在命令行输入python py文件名称,提示:python: can’t open file ‘hello’: [Errno 2] No such file or directoryD:\juzicode>python hellopython: can't open file 'hello': [Errno 2] No such file or directory可能原因:1、本意
·
错误提示:
在命令行输入python py文件名称,提示:python: can’t open file ‘hello’: [Errno 2] No such file or directory
D:\juzicode>python hello
python: can't open file 'hello': [Errno 2] No such file or directory
可能原因:
1、本意是要用python运行hello.py文件,少写了后缀,所以提示不能打开hello文件:
2、如果输入python hello.py 仍提示一样的内容,需要确认下hello.py是否在当前目录下,下图所示的当前目录是指D:\juzicode。
解决方法:
1、如果少写了.py后缀,输入完整的文件名称:python hello.py
2、查找hello.py文件的目录,在cmd命令行切换到py文件的目录下再运行python hello.py
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献5条内容
所有评论(0)