Debian 11.2にPython 3.9 をインストールする

環境情報
# cat /etc/debian_version
11.2

インストールの方法
1.Python3.9をインストールします

# apt -y install python3.9

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

# python3 -V
Python 3.9.2

3.テストプログラムを作成して動作確認

# echo -e "import sys\nprint(sys.version)" > test.py

ファイルを実行します

# python3 test.py
3.9.2 (default, Feb 28 2021, 17:03:44)
[GCC 10.2.1 20210110]

 

Debian 11

Posted by arkgame