SQLAlchemy with Python 3.2 extensions: C not supported?

I installed SQLAlchemy in Python 3.2.2 and saw a message on the command line:

C extensions are not supported on this Python platform, speedups are not enabled. Plain-Python build succeeded. 

But in the docs :

 The C extensions as well as Python 3 builds are supported. 

How could this be?

+6
source share
2 answers

English ambiguity.

{Supported C extensions) and {Python 3 builds}.

{C extensions and Python 3 assemblies together are not supported:

Later in the document:

Extensions are currently only supported in the 2.xx cPython series, not Python 3 or Pypy

+7
source

WARNING: C extensions are not supported on this Python platform, acceleration is not enabled. The Plain-Python build was successful.


The patch was written before December 25, 2011, and it is still not implemented in almost 2 years ... boo hiss!

+1
source

Source: https://habr.com/ru/post/904453/


All Articles