7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-14 03:22:21 +00:00
tutor/docs/download/pip.rst
Kyle McCormick 5f4159c030 docs: wrap tutor[full] in quotes for zsh compatibility
The docs recommend commands like:

    pip install tutor[full]
    pip install -e ./tutor[full]

for installing Tutor. These work fine in bash. For zsh,
though, which is now the default on macOS, quotes are
needed, otherwise zsh will interpret the brackets as
special syntax:

    pip install "tutor[full]"
    pip install -e "./tutor[full]"

Caveat: I have not tested this myself since I don't
own a Mac, but I've read several issue reports to this
effect, such as:
https://github.com/pypa/pipenv/issues/2830#issuecomment-419593199
2022-04-15 09:20:21 +02:00

4 lines
51 B
ReStructuredText

.. parsed-literal::
pip install "tutor[full]"