Problems creating a python package using setuptools and trying to install it from local filesystem
Well.. after some trial and error, i found a solution:
(.venv) $ pip3 install /lib-repository/python/packages/myapiclient/
You just need to run the install
command pointing to the directory containing the setup.py
file.
No nee to use --no-index
or --find-links
in this case.
Now I have everything in place! :)
Thank you very much!