Pythonインストール(Linux系)

本インストールでは、Linux系のPythonインストールですが、「CentOS 7」で実施します。

CentOS7はもともと初期状態で「Python 2.7」がインストールされています。

以下では最も新しいバージョン3のインストールを実施する手順となります。




↓↓↓ITエンジニアのおすすめ学習・開発環境の詳細へ↓↓↓

Pythonインストール前に「IUS Community Project」を登録

Pythonバージョン3はCentOS7では標準yumリポジトリでは提供されていません。

Pythonバージョン3をインストールするためには「IUS Community Project 」の yum リポジトリをインストールする必要があります。

$ yum install -y https://centos7.iuscommunity.org/ius-release.rpm
 
インストール:
  ius-release.noarch 0:2-1.el7.ius

依存性関連をインストールしました:
  epel-release.noarch 0:7-11

完了しました!
$

インストール後、以下のコマンドでリポジトリが作成されたことを確認します。

$ ls -l /etc/yum.repos.d
合計 52
-rw-r--r--. 1 root root 1664  9月  5 22:05 CentOS-Base.repo
-rw-r--r--. 1 root root 1309  9月  5 22:05 CentOS-CR.repo
-rw-r--r--. 1 root root  649  9月  5 22:05 CentOS-Debuginfo.repo
-rw-r--r--. 1 root root  630  9月  5 22:05 CentOS-Media.repo
-rw-r--r--. 1 root root 1331  9月  5 22:05 CentOS-Sources.repo
-rw-r--r--. 1 root root 6639  9月  5 22:05 CentOS-Vault.repo
-rw-r--r--. 1 root root  314  9月  5 22:05 CentOS-fasttrack.repo
-rw-r--r--. 1 root root 1050 10月  3  2017 epel-testing.repo
-rw-r--r--. 1 root root  951 10月  3  2017 epel.repo
-rw-r--r--. 1 root root  669  5月  2  2019 ius-archive.repo
-rw-r--r--. 1 root root  669  5月  2  2019 ius-testing.repo
-rw-r--r--. 1 root root  591  5月  2  2019 ius.repo
$

CentOSで「Python」インストール

リポジトリからPythonのインストールが可能なバージョンを確認します。

Python3.7、3.8は「一致するものが見つかりません」と警告が表示され確認できません。

結果的に現時点(2020/9/20)でインストールが可能なのはバージョン3.6となっています。インストール可能なバージョンを確認する際は以下コマンドを実施します。

$ yum search python36

Pythonのバージョン(3.6)を以下のコマンドでyumインストールします。

$ yum install -y python36u python36u-libs python36u-devel python36u-pip

インストールが正常に終了したら以下コマンドでバージョン確認をします。今回はPythonバージョン3をインストールしたので以下のコマンドを実行します。

$ python3 -V
Python 3.6.8

「pip」もライブラリをインストールする際に必要となるので、アップグレードしておきます。

$ python3 -m pip install --upgrade pip

pipバージョン確認は以下のコマンドを実行します。

$ python3 -m pip -V
pip 19.3.1 from /usr/local/lib/python3.6/site-packages/pip (python 3.6)

CentOSでPythonバージョン3の実行

手動でPythonが動作するか確認します。今回バージョン3をインストールしたので、「python3」コマンドを実行します。

print()関数を実行し、正常に文字列が出力できることを確認します。

プログラムから抜ける時は、quit()コマンドを実行します。このほかにも、「exit()」、「Ctrl+Z」で抜けることも可能です。

$ python3
Python 3.6.8 (default, Aug  7 2019, 17:28:10) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print('hello_python')
hello_python
>>> 
>>> quit()
$

エンジニアのオンライン学習

エンジニアにおすすめのオンライン教材比較
ITエンジニアが自宅で学習ができるオンラインスクール比較

エンジニアのおすすめ学習「Progate」と「Udemy」比較

最新情報をチェックしよう!