python - Specify extras_require with pip install -e -
how can 1 manage install extras_requires pip when installing git repository ?
i know can pip install project[extra] when project on pypi.
, have pip install -e git+https://github.com/user/project.git#egg=project git repo didn't manage find how link these 2 options together.
this should work remote repos:
pip install -e git+https://github.com/user/project.git#egg=project[extra] and local ones (thanks @kurt-bourbaki):
pip install -e .[extra]
Comments
Post a Comment