有人设法使用 Iron Python 安装 Python 模块吗?
我一直在网上寻找有关将 Python 模块(例如,Setuptools)安装到 Iron Python 中的信息。普遍的共识是,这是几年前正在进行的工作。有人有运气吗?
谢谢, 克里斯
I have been trawling the net looking for info on installing Python modules (eg. Setuptools) into Iron Python. The general consensus was that it was a work in progress a couple of years ago. Has anyone has any luck?
Thanks,
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能将 CPython 模块与 IronPython 一起使用。
只要不导入任何 C 模块,就可以使用常规 Python 脚本。
Iron Python 的想法是使用 .NET 程序集。对于等效项,您可能会在 .NET 中使用 Nuget 之类的东西,并且仅引用和导入 .NET 程序集。
另外,我认为您的问题已在此处得到解答。
You cannot use CPython modules with IronPython.
It is possible to use regular Python scripts as long as they are not importing any C modules.
The Idea with Iron Python is to use .NET assemblies. And for an equivalent you will probably be using something like Nuget in .NET and just reference and import the .NET assemblies.
Also I think your question has been answered here.