python setup.py install will automatically install packages listed in requires=[] using easy_install. How do I get it to use pip instead?
python setup.py install will automatically install packages listed in requires=[] using easy_install. How do I get it to use pip instead?
You can pip install a file perhaps by python setup.py sdist first. You can also pip install -e . which is like python setup.py develop.