How to install wheel package from git repo

thushar
Databricks Partner

Using VS code for development and a wheel package is created for shipment.

We put this wheel package in Azure data lake storage and ADB notebook accessed this wheel package and installed it in the cluster. It is working fine.

image.png 

But instead of keeping this in ADLS, we have to keep this wheel file in Git and install the same. We are using the command

pip install -e git+https://xxxxxxxxx@github.com/xxxxxxx/xxxxx.git@main#"egg=myPackage-0.4-py3-none-any.whl"   

but getting the below error.

does not appear to be a Python project: neither 'setup.py' nor 'pyproject.toml' found.

Any chance to fix this issue?