Skip to content

Commit

Permalink
Updating install instructions with a Python-only option.
Browse files Browse the repository at this point in the history
Fixes #147.
  • Loading branch information
dhermes committed Sep 1, 2019
1 parent 9b32c50 commit 6262594
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.rst
Expand Up @@ -81,6 +81,13 @@ The ``bezier`` Python package can be installed with `pip`_:
$ python -m pip install --upgrade bezier
$ python3.7 -m pip install --upgrade bezier
To install a pure Python version (i.e. with no binary extensions):

.. code-block:: console
$ BEZIER_NO_EXTENSIONS=true \
> python -m pip install --upgrade bezier --no-binary=bezier
``bezier`` is open-source, so you can alternatively grab the source
code from `GitHub`_ and install from source.

Expand Down
7 changes: 7 additions & 0 deletions README.rst.release.template
Expand Up @@ -79,6 +79,13 @@ The ``bezier`` Python package can be installed with `pip`_:
$ python -m pip install --upgrade bezier
$ python3.7 -m pip install --upgrade bezier

To install a pure Python version (i.e. with no binary extensions):

.. code-block:: console

$ BEZIER_NO_EXTENSIONS=true \
> python -m pip install --upgrade bezier --no-binary=bezier

``bezier`` is open-source, so you can alternatively grab the source
code from `GitHub`_ and install from source.

Expand Down
7 changes: 7 additions & 0 deletions README.rst.template
Expand Up @@ -74,6 +74,13 @@ The ``bezier`` Python package can be installed with `pip`_:
$ python -m pip install --upgrade bezier
$ python3.7 -m pip install --upgrade bezier

To install a pure Python version (i.e. with no binary extensions):

.. code-block:: console

$ BEZIER_NO_EXTENSIONS=true \
> python -m pip install --upgrade bezier --no-binary=bezier

``bezier`` is open-source, so you can alternatively grab the source
code from `GitHub`_ and install from source.

Expand Down
7 changes: 7 additions & 0 deletions docs/index.rst
Expand Up @@ -95,6 +95,13 @@ The ``bezier`` Python package can be installed with `pip`_:
$ python -m pip install --upgrade bezier
$ python3.7 -m pip install --upgrade bezier
To install a pure Python version (i.e. with no binary extensions):

.. code-block:: console
$ BEZIER_NO_EXTENSIONS=true \
> python -m pip install --upgrade bezier --no-binary=bezier
``bezier`` is open-source, so you can alternatively grab the source
code from `GitHub`_ and install from source.

Expand Down
7 changes: 7 additions & 0 deletions docs/index.rst.release.template
Expand Up @@ -93,6 +93,13 @@ The ``bezier`` Python package can be installed with `pip`_:
$ python -m pip install --upgrade bezier
$ python3.7 -m pip install --upgrade bezier

To install a pure Python version (i.e. with no binary extensions):

.. code-block:: console

$ BEZIER_NO_EXTENSIONS=true \
> python -m pip install --upgrade bezier --no-binary=bezier

``bezier`` is open-source, so you can alternatively grab the source
code from `GitHub`_ and install from source.

Expand Down

0 comments on commit 6262594

Please sign in to comment.