mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-18 07:52:56 +01:00
Merge pull request #6855 from matrix-org/clokep/readme-pip-install
Add quotes around the pip install target to avoid my shell complaining
This commit is contained in:
commit
5e019069ab
2 changed files with 2 additions and 1 deletions
|
@ -272,7 +272,7 @@ to install using pip and a virtualenv::
|
||||||
|
|
||||||
virtualenv -p python3 env
|
virtualenv -p python3 env
|
||||||
source env/bin/activate
|
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
|
This will run a process of downloading and installing all the needed
|
||||||
dependencies into a virtual env.
|
dependencies into a virtual env.
|
||||||
|
|
1
changelog.d/6855.misc
Normal file
1
changelog.d/6855.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Update pip install directiosn in readme to avoid error when using zsh.
|
Loading…
Reference in a new issue