We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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].
pip install -e .[dev]
This issue explains the problem, and their suggested solution resolved this for me. Suggested to use pip install -e .'[dev]'
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.
The text was updated successfully, but these errors were encountered:
you must use pip install -e .\[dev\] because zsh understands [] different
pip install -e .\[dev\]
Sorry, something went wrong.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: