diff options
author | Isaac Jurado <diptongo@gmail.com> | 2012-09-07 13:10:36 +0200 |
---|---|---|
committer | Isaac Jurado <diptongo@gmail.com> | 2012-09-07 13:10:36 +0200 |
commit | 1f09d98be5a64c1a90710ebf12a4b82d4857d9e7 (patch) | |
tree | d2b93b49aca5bc158032cc9bdcf9fed090614444 | |
parent | f488a81ff5baaf848b612c56d49bbe8ca1a237d7 (diff) | |
download | sqlalchemy-1f09d98be5a64c1a90710ebf12a4b82d4857d9e7.tar.gz |
Add a hint on the install guide to enable C extensions with pip.
-rw-r--r-- | doc/build/intro.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/build/intro.rst b/doc/build/intro.rst index 4a5bcb35f..1944b8471 100644 --- a/doc/build/intro.rst +++ b/doc/build/intro.rst @@ -113,6 +113,10 @@ This flag must be on the command line before the actual install or build command python setup.py --with-cextensions install +Or with pip:: + + pip install --global-option='--with-cextensions' SQLAlchemy + Installing on Python 3 ---------------------------------- |