CentOS 7安装Python3
作者:互联网
CentOS 7中默认安装的是python2,而现在绝大部分python程序已经过渡到python3,因此需要安装python3。如果不想用源代码安装的话,其实也很简单:
第一步:更新一下Centos。
[root@django ~]# yum update -y
第二步:安装python3。
[root@django ~]# yum install -y python3
第三步:验证是否安装成功。
[root@django ~]# python3 Python 3.6.8 (default, Nov 16 2020, 16:55:22) [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)] on linux Type "help", "copyright", "credits" or "license" for more information. >>>
标签:CentOS,安装,4.8,django,python3,root,Python3 来源: https://www.cnblogs.com/jason-huawen/p/16297608.html