PIP (Package Installer for Python) is a package manager for the Python language.
Questions tagged [pip]
92 questions
3
votes
2 answers
GCP support after Python 2.7 Deprecation on Genuary 2020
After upgrading pip to the latest version (19.0.1) I got the following message:
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future…

FraG
- 49
- 1
- 5
3
votes
1 answer
CentOS6.X: letsencrypt, cronjob and wrong "pip version"
I'm trying to write a script which will update the letsencrypt cert automatically via cronjob on up-to-date CentOS6.x.
To do that I wrote have following script:
#!/bin/sh
#
# get newest "Let's Encrypt" version
#
cd /opt/letsencrypt
git pull
# bug…

Steffen
- 989
- 3
- 13
- 31
3
votes
3 answers
Python3 virtualenv: ImportError: no module named 'ConfigParser'
I'm working on OSX and I'm trying to create a virtualenv with Python3, but I'm getting an error:
$ virtualenv --python python3 env
Running virtualenv with interpreter /Library/Frameworks/Python.framework/Versions/3.4/bin/python3
Traceback (most…

Richard
- 263
- 2
- 5
- 11
3
votes
1 answer
Why is ATLAS not detected on RHEL when I try a SciPy installation through pip?
I'm using RHEL6, Python 2.6.6, and trying to install SciPy through pip.
[user@server ~]$ sudo pip install scipy
atlas_blas_threads_info:
Setting PTATLAS=ATLAS
libraries ptf77blas,ptcblas,atlas not found in ['/usr/local/lib64',…

Erik Iveson
- 31
- 2
3
votes
1 answer
Deploy a Python project on a server with no compiler and no internet connection
There's a Python project I want to deploy on a production server which has no internet connection and no compiler. The project is using SQLAlchemy and pip install sqlalchemy requires a compiler to work.
The server is running a Debian stable version.…

brmzkw
- 31
- 1
3
votes
1 answer
Workaround for pip install -E option
I am running a Fabric script that sets up a virtualenv on a remote server (running Ubuntu 12.04) and installs various packages into it. The script uses the -E option for pip to install the packages into the virtualenv:
pip install -E . -r [path to…

Jonny Chu
- 33
- 3
3
votes
1 answer
pycurl install looks for a non-existent file (libcurl.a)
I'm running a Gentoo Linux system under which I've never had problems installing anything into my virtualenv using pip. I've managed installing PIL and django, but for some reason, pycurl (a dependency of cloudkey) is flipping out, claiming that I…

Daniel Quinn
- 635
- 2
- 9
- 15
3
votes
0 answers
Use SNI with pip/pypi on Ubuntu 14 Trusty
pip no longer works on old versions of Python 2, because https://pypi.python.org/ now requires Server Name Indication (SNI), which isn't available in Python 2.7.6, the version of Python that comes with Ubuntu 14…

Dan Fabulich
- 497
- 1
- 6
- 19
3
votes
1 answer
pip upgrade downloading every previous version until storage is full
On CentOS 7, I am trying to upgrade awscli:
/usr/bin/python3 -m pip install awscli --upgrade --user
Why is this downloading every single previous version, until there is finally no space left on device?
Requirement already satisfied: awscli…

Nuno
- 553
- 2
- 8
- 26
2
votes
1 answer
easy_install and pip fail with SSL warnings
I'm looking after some RHEL6 servers and trying to set them up to use an internal PyPi server (proxied by Nexus 3).
The problem is that our internal PyPi server is one of several SSL VHosts on the same Nginx server, and Python 2.6 is not SNI…

RCross
- 469
- 2
- 6
- 19
2
votes
2 answers
why yum could not find the python-pip packages on some PCs
I got a very strange problem and cannot figure out why.
When I run yum info python-pip command on some CentOS 7 machines, it returns Error: No matching Packages to list. But, I used to install python-pip on without problem until now.
epel repository…

Roger
- 91
- 1
- 3
- 8
2
votes
2 answers
Getting a custom package to install properly on Elastic Beanstalk
I'm trying to get an elastic beanstalk worker environment set up, but one of the packages in the project's requirements.txt file comes from a private pypi server that I've got set up on EC2.
I can get this custom package to install on my local…

Enrico Tuvera Jr
- 131
- 1
- 6
2
votes
0 answers
How do I re-compile python?
I am attempting to install pip on RHEL.
When I run:
[root@somewhere ~]# python get-pip.py
Traceback (most recent call last):
File "get-pip.py", line 20204, in
main()
File "get-pip.py", line 152, in main
bootstrap(tmpdir=tmpdir)
…

cagcowboy
- 1,072
- 1
- 14
- 21
2
votes
2 answers
mysql-python with MySQL 5.6
I am having problems installing the mysql-python module in my server (CentOS 6.4 x86_64) with MySQL 5.6 installed and Python 2.6.6.
[python@localhost ~]$ rpm -qa | grep…

Axel
- 177
- 1
- 9
2
votes
1 answer
Python install issue on Mac OS X
I have been using the standard python that comes with OS X Lion (2.7.2) but I wanted to build a UCS-4 version to handle 4-byte unicode characters better.
I had already installed pip and packages like pytz, virtualenv and virtualenvwrapper, etc., and…

Michael Waterfall
- 243
- 1
- 8