Problem installing Python 2.5

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Sebastian Bassi

    #1

    Problem installing Python 2.5

    I was trying to install Python 2.5 compiling from sources. I used:
    ../compile
    It run OK.
    Then:
    make altintall
    After a lot of output, got this:
    Listing /usr/local/lib/python2.5/xml/sax ...
    Compiling /usr/local/lib/python2.5/xml/sax/__init__.py ...
    Compiling /usr/local/lib/python2.5/xml/sax/_exceptions.py ...
    Compiling /usr/local/lib/python2.5/xml/sax/expatreader.py ...
    Compiling /usr/local/lib/python2.5/xml/sax/handler.py ...
    Compiling /usr/local/lib/python2.5/xml/sax/saxutils.py ...
    Compiling /usr/local/lib/python2.5/xml/sax/xmlreader.py ...
    Compiling /usr/local/lib/python2.5/xmllib.py ...
    Compiling /usr/local/lib/python2.5/xmlrpclib.py ...
    Compiling /usr/local/lib/python2.5/zipfile.py ...
    make: *** [libinstall] Error 1

    It seems I am not the only one with this error:




    System: Freespire 1.0.13 (based on Debian).
  • Jaroslaw Zabiello

    #2
    Re: Problem installing Python 2.5

    Dnia Tue, 3 Apr 2007 11:52:55 -0300, Sebastian Bassi napisa³(a):
    I was trying to install Python 2.5 compiling from sources. I used:
    ./compile
    It run OK.
    Then:
    make altintall
    After a lot of output, got this:
    Listing /usr/local/lib/python2.5/xml/sax ...
    Compiling /usr/local/lib/python2.5/xml/sax/__init__.py ...
    Compiling /usr/local/lib/python2.5/xml/sax/_exceptions.py ...
    Compiling /usr/local/lib/python2.5/xml/sax/expatreader.py ...
    Compiling /usr/local/lib/python2.5/xml/sax/handler.py ...
    Compiling /usr/local/lib/python2.5/xml/sax/saxutils.py ...
    Compiling /usr/local/lib/python2.5/xml/sax/xmlreader.py ...
    Compiling /usr/local/lib/python2.5/xmllib.py ...
    Compiling /usr/local/lib/python2.5/xmlrpclib.py ...
    Compiling /usr/local/lib/python2.5/zipfile.py ...
    make: *** [libinstall] Error 1
    >
    It seems I am not the only one with this error:



    >
    System: Freespire 1.0.13 (based on Debian).
    After executing

    ./configure

    you have to edito

    Modules/Setup

    file and uncomment the following line:

    #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz

    Then continue with normal make; make install.

    --
    Jaroslaw Zabiello

    Comment

    • Sebastian Bassi

      #3
      Re: Problem installing Python 2.5

      On 4/3/07, Jaroslaw Zabiello <hipertracker@g mail.comwrote:
      After executing
      ./configure
      you have to edito
      Modules/Setup
      file and uncomment the following line:
      #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
      Then continue with normal make; make install.
      Thank you. I already did this:
      make -i altinstall
      and then:
      make altinstall

      And added a comment in bug#1669349
      Best,
      SB.

      Comment

      • =?ISO-8859-1?Q?=22Martin_v=2E_L=F6wis=22?=

        #4
        Re: Problem installing Python 2.5

        After a lot of output, got this:

        You will need to check this output line-for-line to see
        why it fails.

        Regards,
        Martin

        Comment

        Working...