SublimeText3 正在 Python 2 中构建,但我想使用 Python 3。如何更改版本 (Ubuntu 18.04)?
SublimeText3 is Building in Python 2 but I want to use Python 3. How do I Change Versions (Ubuntu 18.04)?
我正在尝试让 SublimeText3 在 Ubuntu 18.04 上使用 Python 3 进行构建。我在我的 Ubuntu 机器上安装了 python 3.6.6,但是当我按下 ctrl+b 时,Sublime 默认为 Python 2。当我使用 "build with" 选项搜索时,没有 Python 3 选项可用。
我需要做什么才能在我的 SublimeText3 项目构建中获得使用 Python 3 的选项?
Tools -> Build System -> New Build System
{
"cmd": ["python3", "-u", "$file"],
"file_regex": "^[ ]File \"(...?)\", line ([0-9]*)",
"selector": "source.python"
}
用名称 python3
保存
Go to Tools -> Build system -> and check python3
尝试使用以下方法对其进行测试:
import sys
print(sys.version)
按:Ctrl + b
我正在尝试让 SublimeText3 在 Ubuntu 18.04 上使用 Python 3 进行构建。我在我的 Ubuntu 机器上安装了 python 3.6.6,但是当我按下 ctrl+b 时,Sublime 默认为 Python 2。当我使用 "build with" 选项搜索时,没有 Python 3 选项可用。
我需要做什么才能在我的 SublimeText3 项目构建中获得使用 Python 3 的选项?
Tools -> Build System -> New Build System
{
"cmd": ["python3", "-u", "$file"],
"file_regex": "^[ ]File \"(...?)\", line ([0-9]*)",
"selector": "source.python"
}
用名称 python3
保存Go to Tools -> Build system -> and check python3
尝试使用以下方法对其进行测试:
import sys
print(sys.version)
按:Ctrl + b