Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
0772a3b4
Commit
0772a3b4
authored
Apr 04, 2016
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.24.x' of github.com:cython/cython into 0.24.x
parents
117b9906
a145a42f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
7 deletions
+17
-7
docs/src/quickstart/install.rst
docs/src/quickstart/install.rst
+11
-7
setup.py
setup.py
+6
-0
No files found.
docs/src/quickstart/install.rst
View file @
0772a3b4
...
...
@@ -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/
...
...
setup.py
View file @
0772a3b4
...
...
@@ -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'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment