Rocky Linux8.5にPythonの統合開発環境thonnyをインストールする

環境
# cat /etc/redhat-release
Rocky Linux release 8.5 (Green Obsidian)

thonnyのインストール方法
1.現在pipのバージョンを確認します

# pip3 -V
pip 9.0.3 from /usr/lib/python3.6/site-packages (python 3.6)

pipをアップデートします

# sudo pip3 install --upgrade pip

アップデート後pipのバージョンを確認します。

# pip3 -V
WARNING: pip is being invoked by an old script wrapper. This will fail in a future version of pip.
Please see https://github.com/pypa/pip/issues/5599 for advice on fixing the underlying issue.
To avoid this problem you can invoke Python with '-m pip' instead of running pip directly.
pip 21.3.1 from /usr/local/lib/python3.6/site-packages/pip (python 3.6)

2.python3-tkinterをインストールします

# sudo dnf install python3-tkinter

3.pipを使ってthonnyのインストールを行います。

# sudo pip3 install thonny

4.thonnyを起動します
ターミナルから以下のコマンドを実行します

# thonny

「Language」欄に「日本語(ALPHA)」を選択して、「Let’s go!」を押下します。

Rocky Linux 8

Posted by arkgame