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

環境
# cat /etc/redhat-release
CentOS Stream release 9

インストールの方法
1.Python 3.9 をインストールします

# dnf -y install python3

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

# python3 -V
Python 3.9.10

3.テストスクリプトを作成して動作確認します

# echo -e "import sys\nprint(sys.version)" > test.py
# python3 test.py
3.9.10 (main, Feb 9 2022, 00:00:00)
[GCC 11.2.1 20220127 (Red Hat 11.2.1-9)]

 

CentOS Stream 9

Posted by arkgame