Monday, May 6, 2024
 Popular · Latest · Hot · Upcoming
17
rated 0 times [  17] [ 0]  / answers: 1 / hits: 22110  / 2 Years ago, fri, january 21, 2022, 9:41:30

Is it possible update default Python 3.4 to 3.4.2? How?


More From » updates

 Answers
7

  1. Download the 3.4.2 source files from here

  2. Extract it to a temporary directory within your Downloads folder

  3. Open a terminal session.

  4. Navigate to the folder with cd ~/Downloads/Python-3.4.2

  5. As per the Python documentation, run the following commands from the terminal:



    ./configure
    make
    make test
    sudo make install



This will upgrade your existing Python-3.4 installation to Python-3.4.2 (accessible as python3)


[#24914] Sunday, January 23, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
dersol

Total Points: 78
Total Questions: 100
Total Answers: 124

Location: Christmas Island
Member since Mon, Oct 19, 2020
4 Years ago
;