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
I am new to contributing to pydra, and in the Developer installation instructions, pydra can be installed in developer mode using pip install -e .[dev]
This syntax does not work in mac zsh, as identified here: pip install -e .[dev] error in mac zsh. They suggest pip install -e ".[dev]" works universally.
I suggest the following changes to the pydra README: pip install -e .[dev] -> pip install -e ".[dev]" pip install -e .[dask] -> pip install -e ".[dask]"
I would be happy to make this change as my first PR if these changes are desired.
The text was updated successfully, but these errors were encountered:
I am new to contributing to pydra, and in the Developer installation instructions, pydra can be installed in developer mode using
pip install -e .[dev]
This syntax does not work in mac zsh, as identified here: pip install -e .[dev] error in mac zsh. They suggest
pip install -e ".[dev]"
works universally.I suggest the following changes to the pydra README:
pip install -e .[dev]
->pip install -e ".[dev]"
pip install -e .[dask]
->pip install -e ".[dask]"
I would be happy to make this change as my first PR if these changes are desired.
The text was updated successfully, but these errors were encountered: