Results 1 to 3 of 3

Thread: Can I make a program use an older python version?

  1. #1
    Join Date
    Mar 2007
    Location
    Silver City, NM
    Beans
    90
    Distro
    Ubuntu 10.04 Lucid Lynx

    Can I make a program use an older python version?

    I need to know how to make a program use a version of python older than the newest one. I am trying to run the Traipse fork of OpenRPG. Through their forums, I have learned that one of my problems is that I am running too new a version of python. I have python 2.7.1 installed.

    I also have python2.6.6 installed, so I should be able to use that. My first thought was to uninstall 2.7.1 and just use the older version. The problem is that if i uninstall 2.7.1, it wants to also uninstall all the packages dependent on that program. Let's face it, in Natty Narwhal, that is pretty much everything.

    Do you know how to force Traipse make it use the 2.6 version?

  2. #2
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Can I make a program use an older python version?

    I think you just tell it to use 2.6. If you look in /usr/bin you find the pythons. python will just be a link to the current installed version 2.7, you can in your programs then use either python or python2.7. There then is also a link from python3 to the current version of python3 which in my Maverick is python3.1. I run python3 programs with this

    #!/usr/bin/python3.1
    # -*- coding: utf-8 -*-

    But now I realize I could have just used python3 and it will use current version 3.

    You should just be able to say python2.6. Check /usr/bin.

    And it is a good thing you did not uninstall 2.7. Users who have done that with older versions had to reinstall as network was also lost. Current versions seem to be repairable with chroot to reinstall just about everything.
    Last edited by oldfred; June 3rd, 2011 at 05:27 PM.
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  3. #3
    Join Date
    Mar 2007
    Location
    Silver City, NM
    Beans
    90
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Can I make a program use an older python version?

    Found out here

    you simply type python2.6 in the terminal and then the filepath.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •