Fix typo in install step: should be install -e (#500)

This commit is contained in:
Tom MacWright 2019-06-11 11:48:40 -07:00 committed by Simon Willison
commit aa911122fe

View file

@ -38,7 +38,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 -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".