Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

install python3 centos 7.8

yum install -y python3
Comment

install python 3 centos

[root@centos7 ~]# yum update -y
yum install -y python3
python3
Comment

install python 3.9 centos8

$ sudo yum install wget gcc openssl-devel libffi-devel bzip2-devel
$ yum install python3
$ python3
$ wget https://www.python.org/ftp/python/3.9.6/Python-3.9.6.tgz
Comment

install python 3.6 on centos

sudo yum install -y https://repo.ius.io/ius-release-el7.rpm
sudo yum update
sudo yum install -y python36u python36u-libs python36u-devel python36u-pip
Comment

install python 3.7 centos

# install requirements
yum install gcc openssl-devel bzip2-devel libffi-devel zlib-devel xz-devel

# Download python version
cd /usr/src  
wget https://www.python.org/ftp/python/3.7.13/Python-3.7.13.tgz
# extract package
tar xzf Python-3.7.11.tgz 

# Install Python
cd Python-3.7.11 
./configure --enable-optimizations 
make altinstall # Used to prevent replacing the default python binary file /usr/bin/python.
rm /usr/src/Python-3.7.11.tgz 
Comment

PREVIOUS NEXT
Code Example
Python :: how to create a list in python 
Python :: passing user instance django form submission 
Python :: mouse bottom in pygame 
Python :: pandas read from txt separtion 
Python :: check input in python 
Python :: merge two dictionaries in a single expression 
Python :: get rid of unnamed column pandas 
Python :: what value do we get from NULL database python 
Python :: python groupby sum single columns 
Python :: how to get input python 
Python :: keras linear regression 
Python :: python wait for x seconds 
Python :: how to resize windows in python 
Python :: distplot with plotly 
Python :: how to sort values of pandas dataframe for iqr 
Python :: How to generate all the permutations of a set of integers, in Python? 
Python :: python write list to excel file 
Python :: how to take input complex number in python 
Python :: keras example 
Python :: duplicate data in python 
Python :: python swap two values in list 
Python :: standard scaler vs min max scaler 
Python :: heroku python version 
Python :: write a python program to find table of a number using while loop 
Python :: python notebook breakpoints 
Python :: python find item in list 
Python :: tkinter margin 
Python :: how to convert to string in python 
Python :: PYTHON 3.0 MAKE A HEART 
Python :: basic tkinter window 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =