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 :: make new app folder in django templates dir 
Python :: logging in with selenium 
Python :: filter dataframe 
Python :: tkinter how to connect keyboard key to button 
Python :: breaking big csv into chunks pandas 
Python :: two loop type python 
Python :: rotate array python 
Python :: python unzip list 
Python :: how to open sound file in python 
Python :: delete files with same extensions 
Python :: print hello world in python 
Python :: Django - include app urls 
Python :: python string to datetime 
Python :: python dict dot notation 
Python :: django staff_member_required decorator 
Python :: remove first 2 rows in pandas 
Python :: python close browser 
Python :: python swap two elements 
Python :: django jalali date 
Python :: pytest loop 
Python :: mad libs in python 
Python :: read live video from usb opencv python 
Python :: python get index of first element of list that matches condition 
Python :: pygame how to get surface lenght 
Python :: euclidean division in python 
Python :: correlation between two columns pandas 
Python :: pytorch detach 
Python :: how to delete a specific line in a file 
Python :: python transpose list of lists 
Python :: remove special characters from string python 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =