Details :
I want to upload and download python wheel files to bitbucket's repo download section.
I want it should be done either way meaning from bit bucket web interface as well as using the APIs or commands (with necessary credential)
Key points
I am able to upload / download using bit bucket web interface.
i have added app password
I am able to upload using POST method (using my username , app password)
I was trying to install that wheel package using pip command as below
pip install --user --extra-index-url https://myusername:mypass@bitbucket.org/owner-username/repo-slug/downloads/my_package-0.1.0-py3-none-any.whl
Bit getting below error
ERROR: You must give at least one requirement to install (see "pip help install")
I also tried with the get request it says
HTTP request sent, awaiting response... 401 Unauthorized
So my question is i don't have download access using the API/pip as able to able so it shoule be there
My app password having repository read and write permission.
Please sugget what could be the solution . Thanks