linux python3安装

Posted ur home

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux python3安装相关的知识,希望对你有一定的参考价值。

1.下载安装包

[root@iZuf6a9cdcuwzty057~]# mkdir -p /opt/python3 
[root@iZuf6a9cdcuwzty057~]# cd /opt/python3/ 
[root@iZuf6a9cdcuwzty057 python3]# wget  https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tar.xz 
[root@iZuf6a9cdcuwzty057 python3]# tar -xvf Python-3.7.0.tar.xz 
[root@iZuf6a9cdcuwzty057 python3]# cd Python-3.7.0/ 

2.编译安装

[root@iZuf6a9cdcuwzty057 Python-3.7.0]# ./configure --prefix=/usr/local/python3 
[root@iZuf6a9cdcuwzty057 Python-3.7.0]# make && make install

--prefix参数指定了软件的安装目录,该软件所有的安装文件都被复制到这个目录,其好处是方便我们卸载或移植软件,推荐使用。

3.新建软连接

[root@iZuf6a9cdcuwzty057 Python-3.7.0]# ln -sv /usr/local/python3/bin/python3.7.0 /usr/bin/python

输入python

[root@iZuf6a9cdcuwzty057 opt]# python
Python 3.7.0 (default, Dec 24 2021, 10:47:46) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-44)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 

pip版本升级

python -m pip install --upgrade pip

官网https://pip.pypa.io/en/stable/installation/https://pip.pypa.io/en/stable/installation/

以上是关于linux python3安装的主要内容,如果未能解决你的问题,请参考以下文章

Linux安装python3.6.2

Linux 安装 python3.6

linux环境快速安装python3

Linux(Centos)下安装python3

linux 安装 python3

Linux下安装Python3