欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python Error: /usr/bin/env: python3: No such file or directory

程序员文章站 2022-07-15 22:24:06
...

当在linux脚本中用 /test/test.py 时,出现错误 :

/usr/bin/env: python3: No such file or directory

(test.py 的第一行为 #!/usr/bin/env python3)

 

原因:因为没有安装python3(只装了 Anaconda)

 

解决方法:将 /test/test.py 改为

python /test/test.py