Python - Is there any way to get pip without setuptools?
问题 Seems kinda weird that they'd require a package manager to install a package manager. I'm on Windows BTW. 回答1: Pip does require setuptools. Pip is really just a wrapper around setuptools to provide a better installer than easy_install and some nicer installation behaviors, plus uninstall, requirements files, etc. Even if you somehow got pip installed without setuptools it still won't run without it. 回答2: You can use Distribute instead of setuptools : it installs a package called setuptools