views:

209

answers:

1

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

+1  A: 

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.

Geoff Reedy