(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...
答案 0 :(得分:3)
为了能够在Windows上编译Python C扩展模块,您需要安装正确版本的Visual Studio。请参阅Building C and C++ Extensions on Windows。
答案 1 :(得分:1)
这是因为simplejson显然包含一些C扩展代码来抵消一些处理,这提高了速度和效率,但是这个人非常友好地为无法编译python代码的c扩展的机器提供纯python替代。其他模块如SQLAlchemy和hiredis
也是如此