I appreciate all the help, but I am still a little confused. Sorry,
I'm a lay person.
Should I download zlib1g-dev and install it to get the zlib module?
and Alter the configure script to avoid future issues?
Also about getting zlib I found the following:
"I was able to recompile zlib
$./conf
I installed it from here: http://www.python.org/getit/releases/2.5.6/
What do you think a solution might be?
--
http://mail.python.org/mailman/listinfo/python-list
Thank You Christian
Im running on Ubuntu Natty and I am not running a self-compiled
install, its a regular release. In order to do this:
$ make distclean
$ export LDFLAGS="-L/usr/lib/$(dpkg-architecture -
qDEB_HOST_MULTIARCH)"
$ ./configure
$ make
$ make install
$ unset LDFLAGS
I
Thank You Christian
Im running on Ubuntu Natty and I am not running a self-compiled
install, its a regular release. In order to do this:
$ make distclean
$ export LDFLAGS="-L/usr/lib/$(dpkg-architecture -
qDEB_HOST_MULTIARCH)"
$ ./configure
$ make
$ make install
$ unset LDFLAGS
Python 2.5.6 (r256:88840, Sep 22 2011, 13:45:58)
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import zlib
Traceback (most recent call last):
File "", line 1, in
ImportError: No module named zlib
>>>
But if I run Python2.7 I get:
Python 2.7.1+
Hello,
I am trying to deploy an app on google app engine using bottle, a
micro-framework, similar to flask. I am running on ubuntu which comes
with python 2.7 installed but GAE needs version 2.5, so I installed
2.5. I then realized I didn't use make altinstall so I may have a
default version probl