shell 脚本一键自动化部署 python3 和 pip3 环境

寸阳分阴须爱惜,休负春色与时光。这篇文章主要讲述shell 脚本一键自动化部署 python3 和 pip3 环境相关的知识,希望能为你提供帮助。
shell 脚本一键自动化部署 python3 和 pip3 环境

#!/bin/bash# Author: 闭关苦炼内功 # Date: 2021-09-04 16:24install() { yum -y install python3 python3-pip }conf() { mkdir ~/.pip touch ~/.pip/pip.conf sed -i "1 i [global]" ~/.pip/pip.conf sed -i "2 i index-url = https://pypi.tuna.tsinghua.edu.cn/simple" ~/.pip/pip.conf sed -i "3 i [install]" ~/.pip/pip.conf sed -i "4 i trusted-host = pypi.tuna.tsinghua.edu.cn" ~/.pip/pip.conf python3 -m pip install --upgrade pip }main() { install conf }main

以下内容,请大神直接忽略(为小白准备的)
脚本有了,该如何用呐?
大象装冰箱三步走
vi auto-python3-pip3.sh
chmod u+x auto-python3-pip3.sh
./auto-python3-pip3.sh
小白童鞋,你懂得
PS:
由于最近一直在搞Ganglia分布式监控,所以blog更新有点慢了,大家请见谅哈!
【shell 脚本一键自动化部署 python3 和 pip3 环境】我们下期见!


    推荐阅读