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

前端 未结 3 1845
-上瘾入骨i
-上瘾入骨i 2020-11-28 02:29

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

3条回答
  •  孤独总比滥情好
    2020-11-28 02:49

    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.

提交回复
热议问题