Skip to content

Commit

Permalink
Quotes around '.[test]' for zsh
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Aug 5, 2021
1 parent a1f3830 commit acc2243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The next step is to create a virtual environment for your project and use it to
# Now activate the virtual environment, so pip can install into it
source venv/bin/activate
# Install Datasette and its testing dependencies
python3 -m pip install -e .[test]
python3 -m pip install -e '.[test]'

That last line does most of the work: ``pip install -e`` means "install this package in a way that allows me to edit the source code in place". The ``.[test]`` option means "use the setup.py in this directory and install the optional testing dependencies as well".

Expand Down

0 comments on commit acc2243

Please sign in to comment.