如何为 Python 3.2 设置 Komodo Edit
我想使用 Komodo Edit 编辑用 Python 3.2 编写的脚本。如何设置 Komodo Edit 来运行 Python 3.2 解释器?我正在使用最新版本的 Mac OSX。
我之所以问这个问题,是因为我目前正在使用 Komodo Edit 并运行某些版本的 Python 解释器。当我使用 print(b, end=' ')
命令时,我收到指向 end=' '
的错误。我认为这是因为 Komodo 使用的是 Mac 上的默认 Python 2.6.1。
任何建议将不胜感激。谢谢。
I would like to use Komodo Edit to edit scripts written in Python 3.2. How do I setup Komodo Edit to run the Python 3.2 interpreter? I am using the latest version of Mac OSX.
The reason I ask because I am currently using Komodo Edit and am running some version of the Python interpreter. When I use the print(b, end=' ')
command, I get and error pointing to end=' '
. I think this is because Komodo is using Python 2.6.1 which is the default on the Mac.
Any suggestions would be greatly appreciated. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在
Preferences -> >中更改默认的Python解释器。语言 -> Python。
You can change the default Python interpreter in
Preferences -> Languages -> Python
.我有同样的问题
尝试在 Komodo 的运行命令工具中使用 python3.1 %F 而不是
%(python3) %F
i had the same problem
try to use python3.1 %F in Komodo's run command tool instead of
%(python3) %F
我有同样的问题。蒂埃里的回答让我走上了正轨。
使用 run 命令时,不要使用 %(python) -u "%F" I
需要在 python %(python3) -u "%F" 后添加 3
I had the same issue. Thierry's answer got me on the right track.
When using the run command, instead of using %(python) -u "%F" I
needed to add a 3 after python %(python3) -u "%F"