a-luna / flask-api-tutorial

Boilerplate for a Flask REST API with JWT-based authentication, built with SQLAlchemy, Flask-RESTx, PyJWT, and pytest. This is a companion repo for a multi-part tutorial series on my personal website.
https://aaronluna.dev/series/flask-api-tutorial/overview/
74 stars 18 forks source link

pip install -e .[dev] fails in zsh #10

Open jaytaytay opened 2 years ago

jaytaytay commented 2 years ago

I am working through this excellent tutorial.

At this step, pip install -e .[dev] failed for me on macOS in zsh. Error message: zsh: no matches found: .[dev].

This issue explains the problem, and their suggested solution resolved this for me. Suggested to use pip install -e .'[dev]'

Perhaps this is obvious to more advanced developers, but I thought it would be helpful to future visitors to this tutorial to update this step.

Thank you.

Cerpint4xt commented 1 year ago

you must use pip install -e .\[dev\] because zsh understands [] different