mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-14 17:24:08 +00:00
5f4159c030
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
437 B
437 B
Install this version from pip with::
pip install "tutor[full]==TUTOR_VERSION"
Or download the compiled binaries::
sudo curl -L "https://github.com/overhangio/tutor/releases/download/TUTOR_VERSION/tutor-$(uname -s)_$(uname -m)" -o /usr/local/bin/tutor
sudo chmod 0755 /usr/local/bin/tutor
See the installation docs for more installation options and instructions.