Issues using urls as install_requires
See original GitHub issueWhen installing python setup.py install
it ignores my path, and gets the “best match” from pypi – which its the incorrect version.
setup(
name='Faker',
...
install_requires=[
...
"validators@https://github.com/kingbuzzman/validators/archive/0.13.0.tar.gz#egg=validators-0.13.0", # TODO: this will change # noqa
],
...
)
How do i get it to stop, and use my link? pip install -e .
or pip install .
does it correctly.
See here for more info: https://stackoverflow.com/questions/56046146/setup-py-ignores-full-path-dependencies-instead-looks-for-best-match-in-pypi
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
Python Setup.py - dependency as url to TAR or GIT
A single dependency is defined in 2 places: a package name in install_requires and a link in dependency_links to resolve the package dependency ......
Read more >python setup.py install_requires - You.com | The AI Search ...
After specifying my package this way installation works fine (also with -e settings and without the need to specify --process-dependency-links ). References [1] ......
Read more >Packaging and distributing projects
url. author. license. classifiers. keywords. project_urls. packages ... To get a listing of available commands, run python setup.py --help-commands .
Read more >How to Package Python dependencies with PIP setuptools
install_requires is a section within the setup.py file in which you need to input a list of the minimum dependencies needed for a...
Read more >Advanced Usage of Pipenv - Python Packaging Authority
There are some known issues with using private indexes, related to hashing. ... In prior versions of pipenv you could specify --extra-index-urls to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@madkote Did you read
hoefling
’s answer over on overflow?@madkote you must use
dependency_links
otherwise it will not work.