• mac sublime切换编辑语言的方法(添加其他版本的python)


    在sublime中指定python版本,操作如下: 

    Sublime——tools——build system——new build system
    把文件中的内容替换为

    {
    "cmd": ["/usr/local/bin/python3", "-u", "$file"],
    "file_regex": "^[ ]*File "(...*?)", line ([0-9]*)",
    "selector": "source.python"
    }

    修改完成之后保存。然后在Sublime——tools——build system中选中你刚刚新增的build system即可

    注意:此处/usr/local/bin/python3的地址应为实际地址,可用如下方法查询:在终端中输入:which python3

    这样修改之后还发现文件中无法写中文,经测试需在上面文件中添加:
    “env”: {“PYTHONIOENCODING”: “utf8”}
    既新增的build system完整内容应该为:

    {
    "cmd": ["/usr/local/bin/python3", "-u", "$file"],
    "file_regex": "^[ ]*File "(...*?)", line ([0-9]*)",
    "selector": "source.python",
    "env": {"PYTHONIOENCODING": "utf8"}
    }

    如果发现新建的build system有误或者名字不喜欢,可以在
    /Users/kaibinliu/Library/Application Support/Sublime Text 2/Packages/User 文件夹里删掉保存的指定python的那个文件

    (我是保存文件,在文件里写了 获取当前文件路径找到的import os  print os.getcwd())

  • 相关阅读:
    indexOf--之美
    uniapp_切换主题
    ueditor调用其中的附件上传功能
    php7 编译安装 apache
    快速排序单循环
    插入排序
    走进svg
    phpstorm内网远程debug
    sass&compass&grunt
    centos7+nginx 1.9.0+php-fpm+phpstorm+xdebug+vmware开发环境搭建
  • 原文地址:https://www.cnblogs.com/kaibindirver/p/9972616.html
Copyright © 2020-2023  润新知