安装python3.7.3的脚本
前言:
Python最初的设计,是作为一种脚本语言的,其中封装了大量便于运维工作自动化的第三方库与类,在学习了python作为编程语言的在软件编程方面的运用后,最近开始学习python在脚本方面的应用,会在接下来的一系列博客中,介绍python常用的脚本模块及其用法。
安装python3.7.3的shell脚本:
#!/bin/bash
#Description: Centos7下python2升级成Python3
download(){
yum install wget zlib* gcc* opensslopenssl-devel
wget https://www.python.org/ftp/python/3.7.3/Python-3.7.3.tar.xz
xz -d Python-3.7.3.tar.xz
tar -xvf Python-3.7.3.tar
}
compile(){
yum install -y libffi libffi-devel
cd Python-3.7.3
./configure --prefix=/usr/local/python3 --with-ssl --enable-shared
make && make install
}
create_link(){
ln -s /usr/local/python3/bin/python3.7 /usr/bin/python3
ln -s /usr/local/python3/bin/pip3 /usr/bin/pip3
echo "/usr/local/python3/lib" >/etc/ld.so.conf.d/python3.conf
ldconfig
python3 --version
}
main(){
download
compile
create_link
}
main