Specifically I want to install a wheel file that has extras_require defined.
I can install the package directly with pip install mypackage[myextradependency]
.
But if I create a wheel file out of it, it does not allow me to do pip install mypackage-1.0-py2.py3-none-any.whl[myextradependency]
and gives me a url syntax error. It seems like I am using the wrong syntax, but I was unable to find the correct syntax on the documentation.
I am trying to install the wheel on a databricks job cluster started via Azure data factory. Therefor I do not have access to additional pip commands.
The exact error message is
Could not parse URI. Please double check your input.
Thanks for your help
question from:https://stackoverflow.com/questions/65907379/how-to-install-a-python-wheel-file-with-optional-extra-requirements