Reputation: 21
I'm new to Python and programming and am having trouble installing zlib
through pip
, I keep having the issue below:
pip install zlib
Collecting zlib
Could not find a version that satisfies the requirement zlib (from versions: )
No matching distribution found for zlib
Upvotes: 2
Views: 26814
Reputation: 264
zlib
is not a python package, you can try yum/apt-get install zlib-devel
or yum/apt-get install zlib
.
Upvotes: 3