如何添加json库
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还可以安装 simplejson。
如果您有 pip (请参阅 https://pypi.python.org/pypi/pip)你的 Python 包管理器可以使用 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:
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".
据我所知,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.
您还可以从这里安装 json-py http://sourceforge.net/projects/json-py/
You can also install json-py from here http://sourceforge.net/projects/json-py/