Skip to content

Commit

Permalink
Update pip install instructions with quotes for better compatibility.
Browse files Browse the repository at this point in the history
From issue #852, this is to ensure it works in the upcoming version
of macOS Catalina, and other operating systems/shells.
  • Loading branch information
carlosperate committed Jul 3, 2019
1 parent 2f5f098 commit 08b928d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Clone the repository::

Make a virtualenv, then install the requirements::

pip install -e .[dev]
pip install -e ".[dev]"

Start Mu::

Expand Down
6 changes: 3 additions & 3 deletions docs/setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ Windows, OSX, Linux
Create a working development environment by installing all the dependencies
into your virtualenv with::

pip install -e .[dev]
pip install -e ".[dev]"

.. note::

The Mu package distribution, as specified in ``setup.py``, declares
both runtime and extra dependencies.

The above mentioned ``pip install -e .[dev]`` installs all runtime
The above mentioned ``pip install -e ".[dev]"`` installs all runtime
dependencies and most development ones: it should serve nearly everyone.

For the sake of completeness, however, here are a few additional details.
Expand Down Expand Up @@ -107,7 +107,7 @@ working development environment:
Raspberry Pi with::

(mu-venv) $ cd ~/mu-source
(mu-venv) $ pip install -e .[dev]
(mu-venv) $ pip install -e ".[dev]"

7. Run mu::

Expand Down

0 comments on commit 08b928d

Please sign in to comment.