Centos7環境安裝Python3的方法

2022-09-26 14:54:18 字數 1235 閱讀 4734

由於centos7原本就安裝了python2,而且這個python2不能被刪除,因為有很多系統命令,比如yum都要用到。

[root@vm_105_217_centos python-3.6.2]# python

python 2.7.5 (default, aug 4 2017, 0www.cppcns.com0:39:18)

[gcc 4.8.5 20150623 (red hat 4.8.5-16)] on linux2

type "help", "copyright", "credits" or "license" for more info

輸入python命令,檢視可以得知是pyth程式設計客棧on2.7.5版本

輸入which python

可以檢視位置,一般是位於/usr/bin/python目錄下。

下面介紹安裝python3的方法

首先安裝依賴包

yum -y groupinstall "development tools"

yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel

然後根據自己需求**不同版本的python3,我**的是python3.6.2

wget

如果速度不夠快,可以直接去官網**,利用winscp等軟體傳到伺服器上指定位置,我的存放目錄是/usr/local/python3,使用命令:

mkdir /usr/local/python3

建立乙個空資料夾

然後解壓壓縮包,進入該目錄,安裝python3

tar -xvjf python-3.6.2.tar.xz

cd python-3.6.2

./configure --prefix=/usr/local/python3

make && make install

最後建立軟鏈結

ln -s /usr/local/python3/bin/python3 /usr/bin/python3

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

在命令列中輸入python3測試

本文標題: centos7環境安裝python3的方法

本文位址: /os/linux/223329.html

centos 7 環境安裝配置

yum update1 安裝ifconfig netstat 命令 yum install net tools2 安裝lsof命令 yum install lsof3 安裝vim yum install vim4 安裝ntfs 3g,及行動硬碟掛載 安裝ntfs 3g yum install gcc...

centos7環境下安裝MySQL

安裝mysql官方的yum repository wget i cyum y install mysql57 community release el7 10.noarch.rpm安裝mysql服務 yum y install mysql community server啟動mysql服務 syst...

Centos7環境下安裝gitlab

1.安裝依賴 yum install curl openssh server openssh clients postfix cronie y 2.開啟postfix systemctl start postfix 3.設定postfix開機自啟動 systemctl enable postfix....