I’m trying to use created package as a dependecy in my other package.
I’m working on private instace of gitlab.
So to install the first package I would use command like this:
pip install <package> --index-url https://__token__:<your_personal_token>@<instace_url>/api/v4/projects/1064/packages/pypi/simple
But the point is I want to use it as dependency (in toml file) of another package which would be installed exaclty same way, that is:
pip install <main_package> --index-url https://__token__:<your_personal_token>@<instace_url>/api/v4/projects/1050/packages/pypi/simple
So I build a .toml file to include all depedencies but putting it like this:
<package> @ <instance_url>/api/v4/projects/1064/packages/pypi/simple
Does not cut it. ERROR: HTTP error 404
How can I include the package in depedency list?
Shaker is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.