快捷安装不同版本Python

举报
kaliarch 发表于 2022/03/12 10:10:28 2022/03/12
【摘要】 一、目的日常测试中,为快捷在Linux系统下安装不同版本Python并安装pip。 二、脚本#!/bin/bash#mail:xuel@anchnet.com#function:auto install pythonsys_init() {[ -f /etc/init.d/functions ] && . /etc/init.d/functions[ $(id -u) != "0" ] &...

一、目的

日常测试中,为快捷在Linux系统下安装不同版本Python并安装pip。

二、脚本

#!/bin/bash
#mail:xuel@anchnet.com
#function:auto install python
sys_init() {
[ -f /etc/init.d/functions ] && . /etc/init.d/functions
[ $(id -u) != "0" ] && echo "Error: You must be root to run this script" && exit 1
sed -i "s/SELINUX=enforcing/SELINUX=disabled/"  /etc/selinux/config
setenforce 0
clear
echo "########################################"
echo "#       Auto Install Python                                    ##"
echo "#       Press Ctrl + C to cancel                            ##"
echo "#       Any key to continue                                  ##"
echo "########################################"
echo "(1) Install Python2.7"
echo "(2) Install zabbix3.6"
echo "(3) Install zabbix3.7"
echo "(4) EXIT"
read -p "Please input your choice:" NUM
case $NUM in 
1)
	URL="https://www.python.org/ftp/python/2.7/Python-2.7.tgz"
	VER=python27
;;
2)
	URL="https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tgz"
	VER=python36
;;
3)
	URL="https://www.python.org/ftp/python/3.7.0/Python-3.7.0b4.tgz"
	VER=python37
;;
4)
	echo -e "\033[41;37m You choice channel! \033[0m" && exit 0
;;
*)
	echo -e "\033[41;37m Input Error! Place input{1|2|3|4} \033[0m" && exit 1
;;
esac
clear
echo -e "\033[41;37m You choice $VER \033[0m"
}

download_software() {
softdir="/software"
if [ ! -d ${softdir} ];then
	mkdir ${softdir} && cd ${softdir}
else
	cd ${softdir}
fi
wget -c ${URL} -O python.tgz
wget -c https://bootstrap.pypa.io/get-pip.py
if [ $? -eq 0 ];then
	tar zxf python.tgz -C /tmp
fi
}

install() { 
yum install -y zlib-devel zlib readline-devel  openssl-devel wget gcc-c++ libffi-devel
if [ ${VER} == "python27" ];then
	dirname="Python-2.7.0"
elif [ ${VER} == "python36" ];then
	dirname="Python-3.6.0"
else
	dirname="Python-3.7.0b4"
fi

cd /tmp/${dirname}
./configure --prefix=/usr/local/${VER}
make && make install
echo "export PATH=$PATH:/usr/local/${VER}/bin">/etc/profile.d/${VER}.sh && source /etc/profile.d/${VER}.sh
#/usr/local/${VER}/bin/python /tmp/get-pip.py
rm -rf /tmp/${VER}
echo "/usr/local/${VER}/lib">/etc/ld.so.conf.d/${VER}.conf
ldconfig
}

main() {
sys_init
download_software
install
}

main

三、示例


【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。