k4black / fastapi-jwt

FastAPI native extension, easy and simple JWT auth
https://k4black.github.io/fastapi-jwt/
MIT License
127 stars 19 forks source link

update pip commnads #51

Closed masterbpro closed 2 months ago

masterbpro commented 2 months ago

In this PR, I added single quotes around the installation commands in the "Installation" section of the documentation. This was necessary due to an issue I encountered on macOS: the command pip install fastapi-jwt[authlib] did not work and resulted in a zsh: no matches found error. Adding the quotes resolves this issue and allows the package to be installed correctly.

k4black commented 2 months ago

On zsh you can also use pip install x\[a,b\] Not sure the fix is needed, zsh users probably know the brackets issue; it was consent =)