python setup.py install
will automatically install packages listed in requires=[]
using easy_install
. How do I get it to use pip
instead?
views:
209answers:
1
+2
Q:
Can I use `pip` instead of `easy_install` for `python setup.py install` dependency resolution?
+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
2010-01-19 00:05:39