linux 系统 如何 安装 python (python 3.8)

1、查看当前python 

pythonquit()

linux 系统 如何 安装 python (python 3.8)

whereis python

linux 系统 如何 安装 python (python 3.8)

which python

linux 系统 如何 安装 python (python 3.8)

2、进入python官网,下载最新安装包  :https://www.python.org/

linux 系统 如何 安装 python (python 3.8)

 linux 系统 如何 安装 python (python 3.8)

wget https://www.python.org/ftp/python/3.8.3/Python-3.8.3.tgztar zxvf  Python-3.8.3.tgz -C ./cd Python-3.8.3/

linux 系统 如何 安装 python (python 3.8)

 

设定安装目录,先看下安装前的设定目录情况:

linux 系统 如何 安装 python (python 3.8)

运行以下命令:

./configure --prefix=/usr/local/python3.8makemake install

linux 系统 如何 安装 python (python 3.8)

linux 系统 如何 安装 python (python 3.8)

linux 系统 如何 安装 python (python 3.8)

3、测试是否安装成功

       

cd /usr/local/python3.8/bin
ls
./python3.8quit()

linux 系统 如何 安装 python (python 3.8)

 可以调用。

直接运行python,发现默认的仍然是2.75:

linux 系统 如何 安装 python (python 3.8)

3、为python3.8建立软连接,首先查看建立之前 /usr/bin/ 目录下的情况:

cd /usr/bin
find python*

linux 系统 如何 安装 python (python 3.8)

ln -s /usr/local/python3.8/bin/python3.8 /usr/bin/python3
ln -s /usr/local/python3.8/bin/pip3.8 /usr/bin/pip3

linux 系统 如何 安装 python (python 3.8)

 检测是否可用:

python3
quit()

linux 系统 如何 安装 python (python 3.8)

可以直接调用。 

相关推荐