如何让 Freebase Python 库在 IronPython 中工作

发布于 2024-07-14 17:19:06 字数 296 浏览 7 评论 0原文

如何让用于使用 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 技术交流群。

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

发布评论

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

评论(1

风追烟花雨 2024-07-21 17:19:06

您缺少 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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文