Python - Installing from Source on Linux: Difference between revisions

From Cramsession
Jump to navigationJump to search
✍️ Verified Author: MflavellClick to view professional profile & credentials
(Created page with "Computer Notes > Python > Python - Installing from Source on Linux Download Python-'''X'''.tgz SCP file to server unzip the file with ''gunzip'' untar the file ''tar -xvf'' run the build commands from the directory ./configure make make test")
 
No edit summary
Line 1: Line 1:
[[Computer Notes]] > [[Python]] > Python - Installing from Source on Linux
[[Computer Notes]] > [[Python]] > Python - Installing from Source on Linux


Download Python-'''X'''.tgz
1) Download Python-'''X'''.tgz


SCP file to server
2) SCP file to server


unzip the file with ''gunzip''
3) Unzip the file with ''gunzip''


untar the file ''tar -xvf''
4) Untar the file ''tar -xvf''


run the build commands from the directory
5) run the build commands from the directory


     ./configure
     ./configure
     make
     make
     make test
     make test

Revision as of 20:25, 28 October 2025

Computer Notes > Python > Python - Installing from Source on Linux

1) Download Python-X.tgz

2) SCP file to server

3) Unzip the file with gunzip

4) Untar the file tar -xvf

5) run the build commands from the directory

   ./configure
   make
   make test