114

On RHEL 6.6, I installed Python 3.5.1 from source. I am trying to install pip3 via get-pip.py, but I get

Traceback (most recent call last):
  File "get-pip.py", line 19177, in <module>
    main()
  File "get-pip.py", line 194, in main
    bootstrap(tmpdir=tmpdir)
  File "get-pip.py", line 82, in bootstrap
    import pip
zipimport.ZipImportError: can't decompress data; zlib not available

It works for the Python 2.6.6 installed. I have looked online for answers, but I cannot seem to find any that works for me.

edit: yum search zlib

jzlib.i686 : JZlib re-implementation of zlib in pure Java
perl-Compress-Raw-Zlib.i686 : Low-Level Interface to the zlib compression library
perl-Compress-Zlib.i686 : A module providing Perl interfaces to the zlib compression library
perl-IO-Zlib.i686 : Perl IO:: style interface to Compress::Zlib
zlib.i686 : The zlib compression and decompression library
zlib-debuginfo.i686 : Debug information for package zlib
zlib-devel.i686 : Header files and libraries for Zlib development
perl-IO-Compress-Zlib.i686 : Perl interface to allow reading and writing of gzip and zip data

  Name and summary matches only, use "search all" for everything.
Flair
  • 1,241

6 Answers6

166

Ubuntu 16.10+ and Python 3.7 dev

sudo apt-get install zlib1g-dev

Note: I only put this here because it was the top search result for the error, but this resolved my issue.

Update: also the case for ubuntu 14.04LTS and base kernel at 4.1+

Nam G VU
  • 501
jmunsch
  • 4,346
55

The solution is : # yum install zlib-devel



Knud Larsen
  • 2,114
9

Simply copy paste this code:

CFLAGS="-I$(brew --prefix readline)/include -I$(brew --prefix openssl)/include -I$(xcrun --show-sdk-path)/usr/include" \
LDFLAGS="-L$(brew --prefix readline)/lib -L$(brew --prefix openssl)/lib" \
PYTHON_CONFIGURE_OPTS=--enable-unicode=ucs2 \
pyenv install -v 3.6.0
3

you don't have decompress tool,You should install zlib .

Updated Answer

first check if its installed

yum list python-gzipstream

If not then run the below to install

yum install python-gzipstream.noarch

I have this installed on my system

 yum list python-gzipstream
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: centos.webwerks.com
 * epel: ftp.kddilabs.jp
 * extras: centos.webwerks.com
 * updates: mirror.nbrc.ac.in
Available Packages
python-gzipstream.noarch                                                                1.4.3-1.el6                                                                 epel
AReddy
  • 3,172
  • 5
  • 36
  • 76
  • 4
    I ran yum install zlib. I get that I already have the latest version. I still get the same error. – Flair Jun 27 '16 at 17:34
  • check the updated answer – AReddy Jun 28 '16 at 03:41
  • 1
    For yum list python-gzipstream, I get Error: No matching Packages to list, and for yum install python-gzipstream.noarch, I get No package python-gzipstream.noarch available. Error: Nothing to do – Flair Jun 28 '16 at 20:28
  • can you show is us the output of yum repolist & yum search zlib. – AReddy Jun 29 '16 at 03:46
  • For repolist, repo id repo name status rhel6_latest Red Hat Enterprise Linux 6Server - i386 - latest 11,637 repolist: 11,637 – Flair Jun 29 '16 at 23:04
  • I put the search results in the edited question. – Flair Jun 29 '16 at 23:08
3

Throwing my 2cents. I've been dealing with this issue for the past 3 hours and realized that python3.6 for me was installed was in /usr/local/bin/.

I remade the configure with --prefix==/usr/bin and pip installed.

Installing collected packages: setuptools, pip Successfully installed pip-9.0.1 setuptools-28.8.0

Ramasdf
  • 31
1

The zlib module is an optional feature for python and it seems that the version of python3.5 in RHEL 6.6 does not include it. You can verify this:

python3 -c "import zlib"

So you'll either need to obtain a zlib enabled version of python (or python libraries) or rebuild python from source with the zlib feature enabled - see here for help: https://stackoverflow.com/questions/12344970/building-python-from-source-with-zlib-support

Pierz
  • 671
  • 9
  • 9