2025/11/26(水) [n年前の日記]
#1 [python][tkinter] CustomTkinterを試用
Python Windows版にはtkinterというGUIアプリ作成用のライブラリ(モジュール?)が標準添付されているけれど、見た目がちょっと古めとの評が多く。
その見た目について、少しオシャレにした CustomTkinter というライブラリがあると知った。
_Official Documentation And Tutorial | CustomTkinter
気になったので試用してみることにした。環境は Windows11 x64 25H2 + Python 3.10.10。
pip でインストールする。
以下がインストールされたっぽい。
MessageBoxも表示したいのだけど、それは別パッケージになるらしい。これもインストールしておいた。
_CTkMessagebox - PyPI
customtkinter, pillow, darkdetect に依存する模様。
その見た目について、少しオシャレにした CustomTkinter というライブラリがあると知った。
_Official Documentation And Tutorial | CustomTkinter
気になったので試用してみることにした。環境は Windows11 x64 25H2 + Python 3.10.10。
pip でインストールする。
> python -m pip install customtkinter Collecting customtkinter Downloading customtkinter-5.2.2-py3-none-any.whl.metadata (677 bytes) Collecting darkdetect (from customtkinter) Downloading darkdetect-0.8.0-py3-none-any.whl.metadata (3.6 kB) Requirement already satisfied: packaging in d:\python\python310-64\lib\site-packages (from customtkinter) (23.0) Downloading customtkinter-5.2.2-py3-none-any.whl (296 kB) Downloading darkdetect-0.8.0-py3-none-any.whl (9.0 kB) Installing collected packages: darkdetect, customtkinter Successfully installed customtkinter-5.2.2 darkdetect-0.8.0
以下がインストールされたっぽい。
- customtkinter 5.2.2
- darkdetect 0.8.0
MessageBoxも表示したいのだけど、それは別パッケージになるらしい。これもインストールしておいた。
_CTkMessagebox - PyPI
> python -m pip install CTkMessagebox Collecting CTkMessagebox Downloading CTkMessagebox-2.7-py3-none-any.whl.metadata (7.4 kB) Requirement already satisfied: customtkinter in d:\python\python310-64\lib\site-packages (from CTkMessagebox) (5.2.2) Requirement already satisfied: pillow in d:\python\python310-64\lib\site-packages (from CTkMessagebox) (11.3.0) Requirement already satisfied: darkdetect in d:\python\python310-64\lib\site-packages (from customtkinter->CTkMessagebox) (0.8.0) Requirement already satisfied: packaging in d:\python\python310-64\lib\site-packages (from customtkinter->CTkMessagebox) (23.0) Downloading CTkMessagebox-2.7-py3-none-any.whl (125 kB) Installing collected packages: CTkMessagebox Successfully installed CTkMessagebox-2.7
customtkinter, pillow, darkdetect に依存する模様。
◎ 参考ページ :
_CustomTkinterによる画面作成のポイントをサンプル付きで紹介 | 趣味や仕事でサクッと使えるPython Tips玉手箱
_CustomTkinter で作るおしゃれな Python GUI & フレームを活用したGUI作成チュートリアル #Python3 - Qiita
_[Python] CustomTkinter ウィジェットプレビューツール #GUI - Qiita
_Python CustomTkinterを使ったGUI画面作成の備忘録(基本操作編)|JJ1MZE
_CustomTkinterの落とし穴
_[GUI] Customkinter の使い方|ハカセ
_TkinterとCustomTkinterで電卓つくって比較してみた #Python - Qiita
_CustomTkinter で作るおしゃれな Python GUI & フレームを活用したGUI作成チュートリアル #Python3 - Qiita
_[Python] CustomTkinter ウィジェットプレビューツール #GUI - Qiita
_Python CustomTkinterを使ったGUI画面作成の備忘録(基本操作編)|JJ1MZE
_CustomTkinterの落とし穴
_[GUI] Customkinter の使い方|ハカセ
_TkinterとCustomTkinterで電卓つくって比較してみた #Python - Qiita
[ ツッコむ ]
以上、1 日分です。