如何为 Python 3.2 设置 Komodo Edit

发布于 2024-11-03 19:51:29 字数 297 浏览 0 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

国际总奸 2024-11-10 19:51:29

您可以在Preferences -> >中更改默认的Python解释器。语言 -> Python。

You can change the default Python interpreter in Preferences -> Languages -> Python.

隔纱相望 2024-11-10 19:51:29

我有同样的问题
尝试在 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

策马西风 2024-11-10 19:51:29

我有同样的问题。蒂埃里的回答让我走上了正轨。
使用 run 命令时,不要使用 %(python) -u "%F" I
需要在 python %(python3) -u "%F" 后添加 3

%(python) -u "%F" (run command)   
import sys  
print(sys.version_info)   
sys.version_info(major=2, minor=7, micro=10, releaselevel='final', serial=0)

%(python3) -u "%F" (run command)    
import sys     
print(sys.version_info)    
sys.version_info(major=3, minor=5, micro=1, releaselevel='final', serial=0)

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"

%(python) -u "%F" (run command)   
import sys  
print(sys.version_info)   
sys.version_info(major=2, minor=7, micro=10, releaselevel='final', serial=0)

%(python3) -u "%F" (run command)    
import sys     
print(sys.version_info)    
sys.version_info(major=3, minor=5, micro=1, releaselevel='final', serial=0)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文