4

顺便说一句,我使用的是 Windows,所以我必须安装 Visual Studio 吗?

(py) D:\python>pip install simplejson
Downloading/unpacking simplejson
  Downloading simplejson-2.6.2.tar.gz (53kB): 53kB downloaded
  Running setup.py egg_info for package simplejson

Installing collected packages: simplejson
  Running setup.py install for simplejson
    building 'simplejson._speedups' extension
    ***************************************************************************

警告:无法编译 C 扩展,未启用加速。

    Failure information, if any, is above.
    I'm retrying the build without the C extension now.



    ***************************************************************************

    ***************************************************************************
    WARNING: The C extension could not be compiled, speedups are not enabled.
    Plain-Python installation succeeded.
    ***************************************************************************
Successfully installed simplejson
Cleaning up...
4

2 回答 2

3

为了能够在 Windows 上编译 Python C 扩展模块,您需要安装正确版本的 Visual Studio。请参阅在 Windows 上构建 C 和 C++ 扩展

于 2012-09-23T19:20:25.460 回答
1

这是因为 simplejson 显然包含一些 C 扩展代码来抵消一些处理这提高了速度和效率,但是该人非常友好地为无法编译 python 代码的 c 扩展的机器提供了纯 python 替代方案。其他模块(如 SQLAlchemy 和hiredis)也是如此

于 2012-09-23T17:08:32.413 回答