➜ ~ git:(master) ✗ pip install fastapi[all]
zsh: no matches found: fastapi[all]
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.
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 thempip install fastapi\[all\]