问题
I have a non-Pypi package that I want to install using setup.py
file, so I include it in the dependency_links
:
dependency_link=['package_url.tar.gz']
The problem there's another package with the same name on Pypi, so the setup.py
just ignores my dependency_links
line and installs that. Is there a way around this?
来源:https://stackoverflow.com/questions/41602869/setup-py-dependency-links-pypi-name-conflict