一、解决Python2 pip问题
在CentOS7中,自带的是Python2的版本,但是并没有pip的方法,我们需要自行安装,包名为python-pip
。
# 默认python2的版本 [root@operation ~]# 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. >>> # 安装Python2的pip [root@operation ~]# yum install epel-release -y [root@operation ~]# yum -y install python-pip # 安装完成后不是最新的pip版本要进行升级 [root@operation ~]# pip install --upgrade pip # 测试 [root@operation ~]# pip -V(大写V) pip 18.1 from /usr/lib/python2.7/site-packages/pip (python 2.7) # 现在可以使用pip进行对Python2 进行安装Python包了 # 第一种方法: [root@operation ~]# pip install 包名 # 第二种方法: [root@operation ~]# python -m pip install pymongo (安装Python2的包) # 若是安装的Python3 [root@operation ~]# python3 -m pip install pymongo (安装Python3的包)
二、安装Python3
1.安装依赖关系
[root@operation ~]# yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc make
注:不能忽略相关包,我之前就没有安装readline-devel导致执行python模式无法使用键盘的上下左右键;
2.下载源码包
[root@operation ~]# wget -c https://www.python.org/ftp/python/3.7.12/Python-3.7.12.tar.xz
- 注:如果没有wget命令可以使用 yum -y install wget 安装;
- 注:我这里安装的是3.7.12的Python版本 如果想要安装其他的版本可以直接修改版本号;
3.解压、编译、安装
# 解压 [root@operation ~]# tar -xvJf Python-3.7.12.tar.xz # 编译 [root@operation ~]# cd Python-3.7.12 [root@operation Python-3.7.12]# ./configure prefix=/usr/local/python3 # 安装 [root@operation Python-3.7.12]# make && make install
4.设置软连接
# 安装完成还是不可以直接在终端输入python3 进入编译器的,我们需要设置软链接 [root@operation Python-3.7.12]# ln -s /usr/local/python3/bin/python3 /usr/bin/python3 # 这样直接执行Python3 就可以进入Python3版本的解释器了 [root@operation Python-3.7.12]# python3 Python 3.7.12 (default, Oct 8 2021, 15:01:17) [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)] on linux Type "help", "copyright", "credits" or "license" for more information. >>>
5.配置Python3的pip
# 设置完python执行后 python3的pip还是不能的用的,也是需要设置的软链接才可以的,在python3的解压目录下是有pip3的命令的 [root@operation Python-3.7.12]# cd /usr/local/python3/bin/ [root@operation bin]# ll pip* -rwxr-xr-x 1 root root 232 10月 12 12:08 pip -rwxr-xr-x 1 root root 232 10月 12 12:08 pip3 -rwxr-xr-x 1 root root 232 10月 12 12:08 pip3.7 # 我们需要做个软链接即可 [root@operation bin]# ln -s /usr/local/python3/bin/pip3 /usr/bin/pip3 # 安装完成后不是最新的pip3版本要进行升级 [root@operation ~]# pip3 install --upgrade pip
6.测试
[root@operation bin]# pip3 -V pip 18.1 from /usr/local/python3/lib/python3.7/site-packages/pip (python 3.7) # 使用 [root@operation bin]# pip3 install 包名 或者 [root@operation bin]# python3 -m pip install 包名
三、安装TAB补全的解释器(ipython)
1.安装(我这里安装双版本的)
# 安装Python2的ipython # 第一种方法 [root@operation ~]# pip install ipython # 第二种方法 [root@operation ~]# python -m pip install ipython # 安装Python3的ipython # 第一种方法 [root@operation ~]# pip3 install ipython # 第二种方法 [root@operation ~]# python3 -m pip install ipython #注:安装无报错安装成功
2.双版本设置软链接
# 因为是安装了Python的双版本而且安装的包名都叫 ipython 所有我们执行ipython的时候使用的是安装的python2的版本,我们要使用双版本就要使用软链接 [root@operation ~]# ipython Python 2.7.5 (default, Aug 4 2017, 00:39:18) Type "copyright", "credits" or "license" for more information. IPython 5.8.0 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object', use 'object??' for extra details. In [1]: # 设置Python3的ipython 使用软链接 [root@operation ~]# ln -s /usr/local/python3/bin/ipython /usr/bin/ipython3
3.测试
# Python2的ipython [root@operation ~]# ipython Python 2.7.5 (default, Aug 4 2017, 00:39:18) Type "copyright", "credits" or "license" for more information. IPython 5.8.0 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object', use 'object??' for extra details. In [1]: # Python3的ipython [root@operation ~]# ipython3 Python 3.7.12 (default, Oct 12 2018, 12:02:11) Type 'copyright', 'credits' or 'license' for more information IPython 7.0.1 -- An enhanced Interactive Python. Type '?' for help. In [1]: