1
0

Merge pull request #6855 from matrix-org/clokep/readme-pip-install

* commit '5e019069a':
  Add quotes around pip install target (my shell complained without them).
This commit is contained in:
Andrew Morgan
2020-03-23 17:09:05 +00:00
2 changed files with 2 additions and 1 deletions

View File

@@ -272,7 +272,7 @@ to install using pip and a virtualenv::
virtualenv -p python3 env
source env/bin/activate
python -m pip install --no-use-pep517 -e .[all]
python -m pip install --no-use-pep517 -e ".[all]"
This will run a process of downloading and installing all the needed
dependencies into a virtual env.

1
changelog.d/6855.misc Normal file
View File

@@ -0,0 +1 @@
Update pip install directiosn in readme to avoid error when using zsh.