Commit 0772a3b4 authored by Robert Bradshaw's avatar Robert Bradshaw

Merge branch '0.24.x' of github.com:cython/cython into 0.24.x

parents 117b9906 a145a42f
......@@ -39,19 +39,23 @@ directory, and then run::
python setup.py install
If you have Python setuptools set up on your system, you should be
able to fetch Cython from PyPI and install it using::
If you have ``pip`` set up on your system (e.g. in a virtualenv or a
recent Python version), you should be able to fetch Cython from PyPI
and install it using
easy_install cython
::
pip install Cython
or
For one-time builds, e.g. for CI/testing, on platforms that are not covered
by one of the wheel packages provided on PyPI, it is substantially faster
than a full source build to install an uncompiled (slower) version of Cython
with
::
pip install cython
pip install Cython --install-option="--no-cython-compile"
For Windows there is also an executable installer available for
download.
.. [Anaconda] http://docs.continuum.io/anaconda/
.. [Canopy] https://enthought.com/products/canopy/
......
......@@ -296,6 +296,12 @@ setup(
C/C++ libraries, and for fast C modules that speed up the execution of
Python code.
Note that for one-time builds, e.g. for CI/testing, on platforms that are not
covered by one of the wheel packages provided on PyPI, it is substantially faster
than a full source build to install an uncompiled (slower) version of Cython with::
pip install Cython --install-option="--no-cython-compile"
.. _Pyrex: http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/
"""),
license='Apache',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment