Can I use `pip` instead of `easy_install` for `python setup.py install` dependency resolution?

Viewed 119300

python setup.py install will automatically install packages listed in requires=[] using easy_install. How do I get it to use pip instead?

3 Answers

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.

Related