尽管我已成功安装 SqlAlchemy 0.7.3,但使用 Python 3 安装 Elixir 时遇到问题?我尝试过谷歌搜索,但我失去了希望。真的有适用于 Python 3 的 Elixir 版本吗?提前致谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
尽管我已成功安装 SqlAlchemy 0.7.3,但使用 Python 3 安装 Elixir 时遇到问题?我尝试过谷歌搜索,但我失去了希望。真的有适用于 Python 3 的 Elixir 版本吗?提前致谢。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
查看源代码,我发现源代码 ematia.de/trac/log/" rel="nofollow">最新更改发生在 10 个月前。另外,搜索
print
我发现所有分支中找到的所有字符串都使用print
作为语句,而不是作为函数,并且没有任何日志字符串可以生成对 python 3 的引用。因此,由于我没有看到任何支持 python 3 的工作痕迹,所以我想说 Python 3 没有 Elixir,除非该工作托管在不同的位置。
编辑:正如评论所指出的,在 setup.py 中有一些有用的信息。特别是,对于 python3,执行 2to3 来生成 python3 版本的代码。请注意,这完全取决于 2to3,并且不能保证最终结果能够正常工作。
Looking at the source code, I see that the latest change happened 10 months ago. Also, searching for
print
I see that all the strings found in all branches useprint
as a statement, not as a function and there isn't any log string that makes a reference to python 3.Hence, since I don't see any trace of work towards supporting python 3, I'd say there's no Elixir for Python 3 unless that work is hosted in a different location.
Edit: As pointed out by a comment, in
setup.py
there's some useful information. In particular, for python3 2to3 is executed to generate a python3 version of the code. Note that this depends completely on 2to3 and doesn't guarantee that the final result is going to work fine.Elixir 已经完成了支持 Python 3 的工作,但 Elixir 尚未发布包含这项工作的版本。我没有参与 Elixir,也不知道这项工作的状态,但您可能想尝试使用最新的 源代码。
如果有效,您应该敦促作者发布版本。
如果它不起作用,您应该加入邮件列表并帮助移植它。通常不是很困难。
There has been work done on Elixir to support Python 3, but Elixir has not seen a release with this work included. I'm not involved in Elixir and do not know the status of this work, but you might want to try to use a checkout of the latest source code.
If that works, you should badger the authors into making a release.
If it doesn't work, you should join the mailing list and help port it. It's usually not very difficult.