如何安装 Python 的 SimpleJson 包
http://pypi.python.org/pypi/simplejson
我刚刚进入Python世界想要制作一个简单的 twitter 应用程序,需要安装 simplejson 但不知道如何设置它并让它工作。
我使用的是 Windows 系统
http://pypi.python.org/pypi/simplejson
I am just diving into the Python world and want to make a simple twitter application which requires the installation of simplejson but not sure how I can set it up and get it working..
I am on a Windows System
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我推荐 EasyInstall,一个 Python 包管理应用程序。
安装 EasyInstall 后,您应该能够转到命令窗口并键入:
这可能需要首先将 easy_install.exe 放在您的 PATH 上,我不记得 EasyInstall 安装程序是否为您执行此操作(类似于
C:\Python25\Scripts
)。I would recommend EasyInstall, a package management application for Python.
Once you've installed EasyInstall, you should be able to go to a command window and type:
This may require putting easy_install.exe on your PATH first, I don't remember if the EasyInstall setup does this for you (something like
C:\Python25\Scripts
).真正简单的方法是:
Really simple way is:
如果您安装了 Python 2.6,那么您已经拥有 simplejson - 只需导入
json
; 这是同一件事。If you have Python 2.6 installed then you already have simplejson - just import
json
; it's the same thing.您可以像这样将 json 导入为 simplejson:
并保持向后兼容性。
You can import json as simplejson like this:
and keep backward compatibility.
下载源码,解压到 目录下,执行 python setup.py install。
Download the source code, unzip it to and directory, and execute python setup.py install.