CentOS 8.5にPython 3.9 をインストールする

2021年12月21日

環境
# cat /etc/redhat-release
CentOS Linux release 8.5.2111

インストールの方法
1.Python 3.9をインストールします
# dnf module -y install python39

2.alternativesコマンドで複数pythonバージョンを切り替えます

# alternatives --config python

There are 3 programs which provide 'python'.

  Selection    Command
-----------------------------------------------
*  1           /usr/libexec/no-python
 + 2           /usr/bin/python3
   3           /usr/bin/python3.9

Enter to keep the current selection[+], or type selection number:3

3.python3バージョンを確認します

# python3.9 --version
Python 3.9.6

# python -V
Python 3.9.6

4.動作確認
テストファイルを作成します
# echo -e “import sys\nprint(sys.version)" > test.py

ファイルを実行します

# python3.9 test.py
3.9.6 (default, Aug 25 2021, 16:22:38)
[GCC 8.5.0 20210514 (Red Hat 8.5.0-3)]

実行方法2

# python test.py
3.9.6 (default, Aug 25 2021, 16:22:38)
[GCC 8.5.0 20210514 (Red Hat 8.5.0-3)]

 

CentOS8

Posted by arkgame