**Error** when running `pip install .[dev]` on zsh, because `[` and `]` are special characters. ``` pip install .[dev] zsh: no matches found: .[dev] ``` **Solution** (from [this issue](https://github.com/mu-editor/mu/issues/852)) is to use quotes ``` pip install '.[dev]' ``` Please consider updating the README