I am running Ubuntu 12.04 and I have a distribution of Python 3.3.1 installed. I want to install some packages, so I first sought to install distribute-0.6.38. During the "install" phase, I am encountering the following runtime error ($HOME is the location of my Python3.3 installation):
File "$HOME/Python-3.3.1/Lib/zipfile.py", line 583, in _check_compression
"Compression requires the (missing) zlib module"
RuntimeError: Compression requires the (missing) zlib module
I tracked back through the files and function calls, but cannot tell why the creation of the zipfile (I assume this is the root of the error) failed.
Is there something missing from the package? Or is there an issue with the fact that this is a secondary installation of Python?