如何让 Freebase Python 库在 IronPython 中工作
如何让用于使用 Freebase API 的 Python 库在 IronPython 2.0?
当我“导入 freebase.api”时,我得到“ImportError:没有名为 django.utils 的模块”。 是什么赋予了?
How do I get the Python libraries for using the Freebase API to work under IronPython 2.0?
When I "import freebase.api", I get "ImportError: No module named django.utils". What gives?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您缺少 simplejson 模块。 由于 easy_install 尚无法与 IronPython 配合使用,因此您最好的选择是使用 SVN 从其 Google 代码项目,或下载 zip 文件 。
将您获得的所有文件放入 IronPython 安装目录下的 lib/site-packages/simplejson 文件夹中。
现在您将能够成功“导入 freebase.api”。
You're missing the simplejson module. Since easy_install doesn't yet work with IronPython, your best bet is to grab the latest code using SVN from their Google Code project, or download a zip file.
Put all of the files that you obtained into the lib/site-packages/simplejson folder under your IronPython installation directory.
Now you'll be able to successfully "import freebase.api".