码迷,mamicode.com
首页 > 编程语言 > 详细

Linux上运行python出现错误“/usr/bin/env: python3: No such file or directory"

时间:2018-11-22 11:48:58      阅读:3109      评论:0      收藏:0      [点我收藏+]

标签:after   cal   python3   car   windows   nes   rri   linux   usr   

If you see the error “: No such file or directory” (with nothing before the colon), it means that your shebang line has a carriage return at the end, presumably because it was edited under Windows (which uses CR,LF as a line separator). The CR character causes the cursor to move back to the beginning of the line after the shell prints the beginning of the message and so you only get to see the part after CR which ends the interpreter string that‘s part of the error message.

Remove the CR: the shebang line needs to have a Unix line ending (linefeed only). Python itself allows CRLF line endings, so the CR characters on other lines don‘t hurt. Shell scripts on the other hand must be free of CR characters.

To remove the Windows line endings, you can use dos2unix:

sudo dos2unix /usr/local/bin/casperjs (你的文件)

or sed:

sudo sed -i -e ‘s/\r$//‘ /usr/local/bin/casperjs (你的文件)

If you must edit scripts under Windows, use an editor that copes with Unix line endings (i.e. something less brain-dead than Notepad) and make sure that it‘s configured to write Unix line endings (i.e. LF only) when editing a Unix file.

Linux上运行python出现错误“/usr/bin/env: python3: No such file or directory"

标签:after   cal   python3   car   windows   nes   rri   linux   usr   

原文地址:https://www.cnblogs.com/andy-0212/p/9999750.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!