Results 1 to 4 of 4

Thread: Install Python3.3.0 with current version intact

  1. #1
    Join Date
    2013-Mar
    Posts
    1

    Install Python3.3.0 with current version intact

    I find myself wanting the newer version of python for development reasons and portability. To install the newer version of Python (3.3.0) in this case (substitute for whatever version you want), do the following from the Terminal.


    wget http://python.org/ftp/python/3.3.0/Python-3.3.0.tgz && tar -xvf Python-3.3.0.tgz
    cd Python-3.3.0
    ./configure
    make
    sudo make altinstall


    To run the Python2.7 version, just type python at the shell prompt. To engage the new version.. type python3.3


    Have fun

  2. #2
    Hi,

    Thanks but there's is another MUCH easier way to get Python 3 installed and fully functional.

    1. Use the provided Software Manager and search after Python3. You'll gonna receive a list of available packages.

    2. Choose python3 base and idle-python3 package. Eventually choose to be installed additonal packages which you consider you need to.

    3. Push apply the let the magic begin.

    Voila. packages are installed directly from the repositories without any worries that something got messy. You'll gonna find under programming section among the idle-python2 the idle-python3 as well and you can work smiling from now on.

    Having extended experience with different python versions under virtualenv option and much more I've just discovered that if you want to have a clean system just try in the fist place the software manager option and as a second option you can go manually

  3. #3

    thanks

    thanks a lot

    Quote Originally Posted by Mr10111011 View Post
    I find myself wanting the newer version of python for development reasons and portability. To install the newer version of Python (3.3.0) in this case (substitute for whatever version you want), do the following from the Terminal.


    wget http://python.org/ftp/python/3.3.0/Python-3.3.0.tgz && tar -xvf Python-3.3.0.tgz
    cd Python-3.3.0
    ./configure
    make
    sudo make altinstall


    To run the Python2.7 version, just type python at the shell prompt. To engage the new version.. type python3.3


    Have fun

  4. #4
    Join Date
    2017-Jan
    Posts
    2
    Thank you!

Similar Threads

  1. Replies: 0
    Last Post: 2022-06-15, 14:25
  2. sbuild cannot install python3 Depens
    By krnick in forum Development Archive
    Replies: 0
    Last Post: 2021-03-08, 15:50
  3. apt install python3-pip
    By telos in forum General Archive
    Replies: 2
    Last Post: 2020-01-26, 19:51
  4. Replies: 1
    Last Post: 2020-01-22, 08:57
  5. Replies: 4
    Last Post: 2018-03-12, 19:39

Tags for this Thread

Posting Permissions

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