如何添加json库

发布于 2024-08-04 06:01:39 字数 279 浏览 4 评论 0原文

我是 python 新手,在我的 Mac 上,当我发出命令时,

User:ihasfriendz user$ python main.py
Traceback (most recent call last):
  File "main.py", line 2, in <module>
    import json
ImportError: No module named json

我收到 json 错误。如何添加这个库?我用的是2.5(默认是leopard)

i am new to python, on my Mac, when i issue command

User:ihasfriendz user$ python main.py
Traceback (most recent call last):
  File "main.py", line 2, in <module>
    import json
ImportError: No module named json

I get error on json. how to add this library? i'm using 2.5 (the default came with leopard)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

深居我梦 2024-08-11 06:01:39

您还可以安装 simplejson。

如果您有 pip (请参阅 https://pypi.python.org/pypi/pip)你的 Python 包管理器可以使用 simplejson 安装:

 pip install simplejson

这类似于使用 easy_install 安装的注释,但我更喜欢 pip 而不是 easy_install,因为你可以使用“pip uninstall package”轻松地在 pip 中卸载。

You can also install simplejson.

If you have pip (see https://pypi.python.org/pypi/pip) as your Python package manager you can install simplejson with:

 pip install simplejson

This is similar to the comment of installing with easy_install, but I prefer pip to easy_install as you can easily uninstall in pip with "pip uninstall package".

╰ゝ天使的微笑 2024-08-11 06:01:39

据我所知,json 模块是在 2.6 版本中添加的,请参阅此处。我猜你可以从此页面将你的Python安装更新到最新的稳定版本2.6。

AFAIK the json module was added in version 2.6, see here. I'm guessing you can update your python installation to the latest stable 2.6 from this page.

故事还在继续 2024-08-11 06:01:39

您还可以从这里安装 json-py http://sourceforge.net/projects/json-py/

You can also install json-py from here http://sourceforge.net/projects/json-py/

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