Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚为 Python 3 设置了 IDE 环境。我想知道如何运行当前在 vim 中编辑的文件。我记得命令是“:python %”,但它不适用于 Python 3。
非常感谢你。
对于 Python 3,只需简单地执行:!python3 %
:!python3 %
此外,您可能还希望将其映射到设置中的热键,就像我所做的那样:
noremap <D-r> <esc>:w<CR>:!python3 %<CR>
这样您就可以随时按下Command+r以使用 Python 3 执行当前代码(它将自动保存。
Command+r
你可以使用
:!python %
它肯定会奏效。现在你的 python 应该指向 python3 在这种情况下,如果不只是写:!python3 %而不是