when using:
pip install -e pip-package
how does one do the equivalent of:
pip install pip-package[all]==1.10.0
'[all]' being the extra feature I am trying to leverage.
when using:
pip install -e pip-package
how does one do the equivalent of:
pip install pip-package[all]==1.10.0
'[all]' being the extra feature I am trying to leverage.
Editable installs can only be performed from a local project or VCS, so you have to download a specific version of the package before.
git clone https://github.com/requests/requests.git
cd requests
git checkout tag_name
pip install -e '.[security]'