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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
bc199bd1
Commit
bc199bd1
authored
Apr 01, 2016
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.24.x'
parents
275f5fbd
704bac1d
Changes
2
Show 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 @
bc199bd1
...
@@ -42,18 +42,19 @@ directory, and then run::
...
@@ -42,18 +42,19 @@ directory, and then run::
If you have Python setuptools set up on your system, you should be
If you have Python setuptools set up on your system, you should be
able to fetch Cython from PyPI and install it using::
able to fetch Cython from PyPI and install it using::
easy_install
c
ython
easy_install
C
ython
or
or
::
::
pip install
c
ython
pip install
C
ython
For Windows there is also a wheel package available for download.
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
For one-time builds, e.g. for CI/testing, on platforms that are not covered
faster to install an uncompiled (slower) version of Cython with
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 @
bc199bd1
...
@@ -296,8 +296,9 @@ setup(
...
@@ -296,8 +296,9 @@ setup(
C/C++ libraries, and for fast C modules that speed up the execution of
C/C++ libraries, and for fast C modules that speed up the execution of
Python code.
Python code.
Note that for CI and test builds that use Cython for one-time compilation,
Note that for one-time builds, e.g. for CI/testing, on platforms that are not
you can speed up the Cython installation with::
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"
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