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

Popular posts from this blog

Email notification in google apps script -

c++ - Difference between pre and post decrement in recursive function argument -

javascript - IE11 incompatibility with jQuery's 'readonly'? -