Top "Pip" questions

Use for questions about the Python package installer

Is it possible to use pip to install a package from a private GitHub repository?

I am trying to install a Python package from a private GitHub repository. For a public repository, I can issue …

python git github pip
What is the purpose of "pip install --user ..."?

From pip install --help: --user Install to the Python user install directory for your platform. Typically ~/.local/, or %APPDATA%\Python …

python python-3.x pip virtualenv
How to install python modules without root access?

I'm taking some university classes and have been given an 'instructional account', which is a school account I can ssh …

python numpy pip
Installing SciPy and NumPy using pip

I'm trying to create required libraries in a package I'm distributing. It requires both the SciPy and NumPy libraries. While …

python numpy scipy pip apt
Install a module using pip for specific python version

On Ubuntu 10.04 by default Python 2.6 is installed, then I have installed Python 2.7. How can I use pip install to install …

python pip
Why use pip over easy_install?

A tweet reads: Don't use easy_install, unless you like stabbing yourself in the face. Use pip. Why use pip …

python pip setuptools easy-install pypi
How to use pip with Python 3.x alongside Python 2.x

I installed Python 3.x (besides Python 2.x on Ubuntu) and slowly started to pair modules I use in Python 2.x. …

python python-3.x python-2.7 pip
Pip - Fatal error in launcher: Unable to create process using '"'

I installed python 3.5.1 via ampps and it's working. However, when i try to use pip, i get the following message: …

python windows python-3.x pip ampps
pip install failing with: OSError: [Errno 13] Permission denied on directory

pip install -r requirements.txt fails with the exception below OSError: [Errno 13] Permission denied: '/usr/local/lib/.... What's wrong …

python permissions pip installation
How to use requirements.txt to install all dependencies in a python project

I am new to python. Recently I got a project written by python and it requires some installation. I run …

python pip requirements.txt