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
704bac1d
Commit
704bac1d
authored
Apr 01, 2016
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make it clearer that wheels are even better than faster source builds
parent
d628f780
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
docs/src/quickstart/install.rst
docs/src/quickstart/install.rst
+5
-4
setup.py
setup.py
+3
-2
No files found.
docs/src/quickstart/install.rst
View file @
704bac1d
...
...
@@ -42,18 +42,19 @@ directory, and then run::
If you have Python setuptools set up on your system, you should be
able to fetch Cython from PyPI and install it using::
easy_install
c
ython
easy_install
C
ython
or
::
pip install
c
ython
pip install
C
ython
For Windows there is also a wheel package available for download.
For one-time builds, e.g. on CI and test servers, it is substantially
faster to install an uncompiled (slower) version of Cython with
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
::
...
...
setup.py
View file @
704bac1d
...
...
@@ -296,8 +296,9 @@ setup(
C/C++ libraries, and for fast C modules that speed up the execution of
Python code.
Note that for CI and test builds that use Cython for one-time compilation,
you can speed up the Cython installation with::
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"
...
...
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