Top "Pip" questions

Use for questions about the Python package installer

What is the easiest way to remove all packages installed by pip?

I'm trying to fix up one of my virtualenvs - I'd like to reset all of the installed libraries back …

python pip
Can I force pip to reinstall the current version?

I've come across situations where a current version of a package seems not to be working and requires reinstallation. But …

python pip packages
No module named pkg_resources

I'm deploying a Django app to a dev server and am hitting this error when I run pip install -r …

python django virtualenv setuptools pip
filename.whl is not supported wheel on this platform

I would like to install scipy-0.15.1-cp33-none-win_amd64.whl that I have saved to local drive. I am using: …

python pip
How do I install Python packages on Windows?

I'm having a hard time setting up python packages. EasyInstall from SetupTools is supposed to help that, but they don't …

python pip
pip install from git repo branch

Trying to pip install a repo's specific branch. Google tells me to pip install git+https://github.com/user/repo.…

python git pip
Installing Python packages from local file system folder to virtualenv with pip

Is it possible to install packages using pip from the local filesystem? I have run python setup.py sdist for …

python pip
Find all packages installed with easy_install/pip?

Is there a way to find all Python PyPI packages that were installed with easy_install or pip? I mean, …

python pip easy-install pypi
ImportError: No module named pip

OS: Mac OS X 10.7.5 Python Ver: 2.7.5 I have installed setuptools 1.0 with ez_setup.py from https://pypi.python.org/pypi/…

python pip
Where does pip install its packages?

I activated a virtualenv which has pip installed. I did pip3 install Django==1.8 and Django successfully downloaded. Now, I want …

python django pip virtualenv