作者:书友78403557 | 来源:互联网 | 2023-05-18 02:05
centos7.4mini安装没有图形,关闭selinux和firewall。系统默认是python2.7[root@controller~]#pythonPython2.7.5
centos7.4 mini安装没有图形,关闭selinux和firewall。系统默认是python2.7
[root@controller ~]# python
Python 2.7.5 (default, Aug 4 2017, 00:39:18)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
python的模块安装方法是easy_install或pip,系统上默认没有。
1、安装企业扩展yum
yum install epel-release -y
yum search easy_install
有如下的结果:
python2-pip.noarch : A tool for installing and managing Python 2 packages
python34-pip.noarch : A tool for installing and managing Python3 packages
就可以使用pip3安装python3的相关软件包了。
[root@controller ~]# python
python python2 python2.7 python3 python3.4 python3.4m
[root@controller ~]# pip3
pip3 pip3.4
如果不是搞OpenStack等,还是使用python3吧。
python2同python3的一个差异是
3要加括弧print ()