美文网首页
/usr/bin/python3^M: bad interpre

/usr/bin/python3^M: bad interpre

作者: Soup_1acc | 来源:发表于2020-02-26 14:32 被阅读0次

    2020-2-26

    记一次linux操作报错

    问题:/usr/bin/python3^M: bad interpreter: No such file or directory;在linux下运行python脚本时报错。

    图片

    原因:.py脚本在windows系统下用记事本文件编写的。不同系统的编码格式引起的。

    解决方法:修改.py文件格式

        (1)使用vi工具

          vi test.sh

        (2)利用如下命令查看文件格式 

         :set ff 或 :set fileformat 

         可以看到如下信息 

         fileformat=dos或 fileformat=unix

         (3) 利用如下命令修改文件格式 

         :set ff=unix 或 :set fileformat=unix 

         :wq (存盘退出)

    注:其实,在windows下通过git bash可以直接编写unix格式.sh!

    (转载于:https://www.cnblogs.com/felixzh/p/6108345.html)

    相关文章

      网友评论

          本文标题:/usr/bin/python3^M: bad interpre

          本文链接:https://www.haomeiwen.com/subject/cbkmchtx.html