Python安装
Centos安装Python环境
首先使用yum下载wget
yum -y install wget |
使用wget下载Python的压缩包
wget 连接
wget https://www.python.org/ftp/python/3.8.0/Python-3.8.0.tgz |
然后解压文件
tar zxf Python-3.8.0.tgz |
然后创建一个目录存放python3,我选用/usr/local/python3
mkdir -p /usr/local/python3 |
编译安装所需环境
yum -y install gcc |
修改配置
cd Python-3.8.0 |
编译安装
make && make install |
建立软连接
ln -s /usr/local/python3/bin/python3.8 /usr/bin/python3 |
如果建立软连接提示File exists
cd /bin |
查看版本
python3 |
至此,Python就在centos安装完毕了
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Sj1t's Blog!