Commit f76a33b4 by Matt Gosden Committed by Bjorn Neergaard

Documentation improvement for Zsh which needs ""

parent 5a563fff
...@@ -362,6 +362,10 @@ poetry add "requests[security,socks]~=2.22.0" ...@@ -362,6 +362,10 @@ poetry add "requests[security,socks]~=2.22.0"
poetry add "git+https://github.com/pallets/flask.git@1.1.1[dotenv,dev]" poetry add "git+https://github.com/pallets/flask.git@1.1.1[dotenv,dev]"
``` ```
{{% warning %}}
Be aware that some shells (in particular Mac Zsh) may not recognise the package name without quotes - for example `poetry add requests[security,socks]`. In this case try instead with quotes `poetry add "requests[security,socks]"`
{{% /warning %}}
If you want to add a package to a specific group of dependencies, you can use the `--group (-G)` option: If you want to add a package to a specific group of dependencies, you can use the `--group (-G)` option:
```bash ```bash
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment