Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit ca8990b

Browse files
docs: contributing: dev env: zsh pain point
1 parent cf6df5b commit ca8990b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

docs/contributing/dev_env.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,15 @@ their latest versions (``pip setuptools wheel``).
6464
$ python3 -m pip install -U pip setuptools wheel
6565
$ python3 -m pip install --prefix=~/.local -e .[dev]
6666
67+
68+
In case you're using zsh shell, you may encounter ``zsh: no matches found: [dev]``.
69+
This occurs as zsh interprets square brackets differently. This issue can be
70+
resolved by enclosing [dev] within quotation marks
71+
72+
.. code-block:: console
73+
74+
$ python3 -m pip install --prefix=~/.local -e .'[dev]'
75+
6776
Verify you can use ``dffml`` from the command line.
6877

6978
.. code-block:: console

0 commit comments

Comments
 (0)