<bdo id='MW0Lh'></bdo><ul id='MW0Lh'></ul>
<i id='MW0Lh'><tr id='MW0Lh'><dt id='MW0Lh'><q id='MW0Lh'><span id='MW0Lh'><b id='MW0Lh'><form id='MW0Lh'><ins id='MW0Lh'></ins><ul id='MW0Lh'></ul><sub id='MW0Lh'></sub></form><legend id='MW0Lh'></legend><bdo id='MW0Lh'><pre id='MW0Lh'><center id='MW0Lh'></center></pre></bdo></b><th id='MW0Lh'></th></span></q></dt></tr></i><div id='MW0Lh'><tfoot id='MW0Lh'></tfoot><dl id='MW0Lh'><fieldset id='MW0Lh'></fieldset></dl></div>
    <tfoot id='MW0Lh'></tfoot>
  • <small id='MW0Lh'></small><noframes id='MW0Lh'>

  • <legend id='MW0Lh'><style id='MW0Lh'><dir id='MW0Lh'><q id='MW0Lh'></q></dir></style></legend>

        env: python : 没有这样的文件或目录

        时间:2023-07-06

            <tbody id='EVBb0'></tbody>
          1. <tfoot id='EVBb0'></tfoot>
            <legend id='EVBb0'><style id='EVBb0'><dir id='EVBb0'><q id='EVBb0'></q></dir></style></legend>

              <small id='EVBb0'></small><noframes id='EVBb0'>

              • <bdo id='EVBb0'></bdo><ul id='EVBb0'></ul>
                <i id='EVBb0'><tr id='EVBb0'><dt id='EVBb0'><q id='EVBb0'><span id='EVBb0'><b id='EVBb0'><form id='EVBb0'><ins id='EVBb0'></ins><ul id='EVBb0'></ul><sub id='EVBb0'></sub></form><legend id='EVBb0'></legend><bdo id='EVBb0'><pre id='EVBb0'><center id='EVBb0'></center></pre></bdo></b><th id='EVBb0'></th></span></q></dt></tr></i><div id='EVBb0'><tfoot id='EVBb0'></tfoot><dl id='EVBb0'><fieldset id='EVBb0'></fieldset></dl></div>

                  本文介绍了env: python : 没有这样的文件或目录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我的 Python 脚本 beak 包含以下 shebang:

                  My Python script beak contains the following shebang:

                  #!/usr/bin/env python
                  

                  当我运行脚本 $ ./beak 时,我得到了

                  When I run the script $ ./beak, I get

                  env: python
                  : No such file or directory
                  

                  我之前从存储库中提取了这个脚本.这可能是什么原因?

                  I previously pulled this script from a repository. What could be the reason for this?

                  推荐答案

                  脚本包含 CR 字符.shell 将这些 CR 字符解释为参数.

                  The script contains CR characters. The shell interprets these CR characters as arguments.

                  解决方案:使用以下脚本从脚本中删除 CR 字符.

                  Solution: Remove the CR characters from the script using the following script.

                  with open('beak', 'rb+') as f:
                      content = f.read()
                      f.seek(0)
                      f.write(content.replace(b'
                  ', b''))
                      f.truncate()
                  

                  这篇关于env: python : 没有这样的文件或目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何在 Python 中将环境变量评估为字符串? 下一篇:没有了

                  相关文章

                    <legend id='Usp56'><style id='Usp56'><dir id='Usp56'><q id='Usp56'></q></dir></style></legend>
                    <i id='Usp56'><tr id='Usp56'><dt id='Usp56'><q id='Usp56'><span id='Usp56'><b id='Usp56'><form id='Usp56'><ins id='Usp56'></ins><ul id='Usp56'></ul><sub id='Usp56'></sub></form><legend id='Usp56'></legend><bdo id='Usp56'><pre id='Usp56'><center id='Usp56'></center></pre></bdo></b><th id='Usp56'></th></span></q></dt></tr></i><div id='Usp56'><tfoot id='Usp56'></tfoot><dl id='Usp56'><fieldset id='Usp56'></fieldset></dl></div>

                      • <bdo id='Usp56'></bdo><ul id='Usp56'></ul>

                    1. <small id='Usp56'></small><noframes id='Usp56'>

                      <tfoot id='Usp56'></tfoot>