Execution

作者: 地不埋心 | 来源:发表于2017-12-19 16:22 被阅读0次
    • 1、.py文件第一行插入python解释器的安装位置可快速执行,如
    #!/usr/local/bin/python
    print('hello world')
    

    该方法需要知道python解释器安装位置,可使用更方便的方法实现,如下

    #!/usr/local/env python
    print('hello world')
    

    该方法可动态绑定python,根据env环境变量寻找位置

    相关文章

      网友评论

          本文标题:Execution

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