Sublime Text 3 Python3 构建不工作?
Sublime Text 3 Python3 build not working?
我刚刚在我的 Linux Pop_!OS 计算机上安装了最新版本的 Sublime Text 3,但我无法 运行 python 文件。
当我尝试使用 python 和 CTRL-B
构建文件时,它在日志中给我一个错误...
bash: python: command not found
[Finished in 0.0s with exit code 127]
[shell_cmd: python -u "/media/kevinapetrei/KEVIN USB/Files/Programming/Python Programs/Finished/HiLo Versions/HiLo-2.02/setup.py"]
[dir: /media/kevinapetrei/KEVIN USB/Files/Programming/Python Programs/Finished/HiLo Versions/HiLo-2.02]
[path: /app/utils/bin:/app/sublime_merge/bin:/app/bin:/usr/bin]
这很奇怪,因为我在终端上安装了一个包,它允许我使用命令 python
到 运行 python3。 (在终端中,我仍然可以使用命令 python
.
运行 文件
怎么了?我可以编辑它以使其以某种方式工作吗?
如果 built-in 方法不起作用,您可以在 Linux 上为 python3 创建一个新的 build system
。
首先,打开终端并写入
$ which python3
它将为您提供 python3
的位置
/usr/bin/python3
然后在 sublime text 中转到 tools -> Build System -> New Build System
并将下面的代码粘贴到该文件中并更改 python 的位置(如果它在不同的位置):
{
"cmd": ["/usr/bin/python3", "-u", "$file"],
"file_regex": "^[ ]File \"(...?)\", line ([0-9]*)",
"selector": "source.python"
}
现在使用 anyname_you_want.sumblime-build
保存并打开 python 文件,然后 select tools -> Build System -> anyname_you_want
和 运行 您的 python 文件。应该可以。
我刚刚在我的 Linux Pop_!OS 计算机上安装了最新版本的 Sublime Text 3,但我无法 运行 python 文件。
当我尝试使用 python 和 CTRL-B
构建文件时,它在日志中给我一个错误...
bash: python: command not found
[Finished in 0.0s with exit code 127]
[shell_cmd: python -u "/media/kevinapetrei/KEVIN USB/Files/Programming/Python Programs/Finished/HiLo Versions/HiLo-2.02/setup.py"]
[dir: /media/kevinapetrei/KEVIN USB/Files/Programming/Python Programs/Finished/HiLo Versions/HiLo-2.02]
[path: /app/utils/bin:/app/sublime_merge/bin:/app/bin:/usr/bin]
这很奇怪,因为我在终端上安装了一个包,它允许我使用命令 python
到 运行 python3。 (在终端中,我仍然可以使用命令 python
.
怎么了?我可以编辑它以使其以某种方式工作吗?
如果 built-in 方法不起作用,您可以在 Linux 上为 python3 创建一个新的 build system
。
首先,打开终端并写入
$ which python3
它将为您提供 python3
的位置/usr/bin/python3
然后在 sublime text 中转到 tools -> Build System -> New Build System
并将下面的代码粘贴到该文件中并更改 python 的位置(如果它在不同的位置):
{
"cmd": ["/usr/bin/python3", "-u", "$file"],
"file_regex": "^[ ]File \"(...?)\", line ([0-9]*)",
"selector": "source.python"
}
现在使用 anyname_you_want.sumblime-build
保存并打开 python 文件,然后 select tools -> Build System -> anyname_you_want
和 运行 您的 python 文件。应该可以。