Installation of python from source code on centos 7
- Category : Linux Helpline (Easy Guide)
- Posted on : Feb 04, 2019
- Views : 2,310
- By : Vucebte Q.

Python is an interpreted, object-oriented, high-level programming language with dynamic semantics.Pythonβs simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance.
My intention here is to make python accessible from the command line.
Before installation,just update the software packages in the server using the below command.
#yum updateNow change the directory according to your choice inorder to download the source file.
#cd usr/local/src/Download the source file using the following command,
#wget https://www.python.org/ftp/python/3.6.4/Python-3.6.4.tar.xzExtract the downloaded using using tar command as,
#tar -xJf Python-3.6.4.tar.xz
#cd Python-3.6.4Now its time execute the well known command configure
#./configure Run the following commands to install python into the server.
#make
#make installAfter the python is compiled and installed,access python from terminal and start coding.
# python3 -VPython 3.6.4#python3.6Python 3.6.4 (default, Apr 12 2019, 10:16:39)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-36)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> f=5
>>> print(f)
5
>>> Categories
Subscribe Now
10,000 successful online businessmen like to have our content directly delivered to their inbox. Subscribe to our newsletter!Archive Calendar
| Sat | Sun | Mon | Tue | Wed | Thu | Fri |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
| 29 | 30 | |||||
Recent Articles
-

Posted on : Jul 25
-

Posted on : Jul 07
-

Posted on : Apr 07
-

Posted on : Mar 19
Optimized my.cnf configuration for MySQL 8 (on cPanel/WHM servers)
Tags
- layer 7
- tweak
- kill
- process
- sql
- Knowledge
- vpn
- seo vpn
- wireguard
- webmail
- ddos mitigation
- attack
- ddos
- DMARC
- server load
- Development
- nginx
- php-fpm
- cheap vpn
- Hosting Security
- xampp
- Plesk
- cpulimit
- VPS Hosting
- smtp
- smtp relay
- exim
- Comparison
- cpu
- WHM
- mariadb
- encryption
- sysstat
- optimize
- Link Building
- apache
- centos
- Small Business
- VPS
- Error
- SSD Hosting
- Networking
- optimization
- DNS
- mysql
- ubuntu
- Linux






