You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The comment on how to set up the dev environment using conda in environment-yml says: pip install -e .[dev]
This causes issues with zsh (see also mu-editor/mu#852)
Code for reproduction
matplotlib%pipinstall-e .[dev]
Actual outcome
zsh: no matches found: .[dev]
Expected outcome
Expected to install the build dependencies successfully
Additional information
Propose to update the comment to: pip install -e .'[dev]'
, which was also used to fix here mu-editor/mu#852