Skip to content

Commit cf2f6ce

Browse files
committed
Adjust install instructions
"pip install -e .[all]" doesn't work if you don't have setup.py. We're using a declarative package config so we need to invoke it slightly differently.
1 parent 50d824f commit cf2f6ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ in `Makefile`).
102102
python -m venv venv
103103
source venv/bin/activate
104104
# Install the dependencies in your virtual environment
105-
(venv) pip install -e .[all]
105+
(venv) python -mpip install .[all]
106106
# Create the HTML to visualize locally
107107
(venv) make html
108108
(venv) firefox _build/index.html

0 commit comments

Comments
 (0)