安装simplejson时为什么会出现“C扩展无法编译”?

时间:2012-09-23 16:53:57

标签: python windows visual-studio python-extensions

不过,我正在使用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...

2 个答案:

答案 0 :(得分:3)

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

答案 1 :(得分:1)

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

也是如此