Fastapi: [QUESTION]➜ ~ git:(master) ✗ pip install fastapi[all] zsh: no matches found: fastapi[all]

Created on 2 Mar 2020  Â·  3Comments  Â·  Source: tiangolo/fastapi

➜ ~ git:(master) ✗ pip install fastapi[all]
zsh: no matches found: fastapi[all]

question

Most helpful comment

The problem is that in zsh, contrary to bash [ and ] have special meaning. You need to use quotes: pip install 'fastapi[all]' or escape them pip install fastapi\[all\]

All 3 comments

The problem is that in zsh, contrary to bash [ and ] have special meaning. You need to use quotes: pip install 'fastapi[all]' or escape them pip install fastapi\[all\]

Thanks for the help @pmav99 ! :cake:

Assuming the original issue was solved, it will be automatically closed now. But feel free to add more comments or create new issues.

Was this page helpful?
0 / 5 - 0 ratings