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

javascript - three.js lot of meshes optimization -

smartface.io - Proper way to change color scheme for whole application -

Email notification in google apps script -