2022/03/22(火) [n年前の日記]
#2 [python] Python 2.7 と wxPython についてメモ
Windows版の Python 2.7.18 32bit に wxPython をインストールしようとして少し悩んだのでメモ。
pip install wxPython と打ったら wxPython 4.1.1 のインストール処理が始まったけど、しかしエラーが出てインストールできなかった。
ググってみたら、Python 2.7 で利用できる wxPython は 4.1.0 が最終版だった。それ以後は Python 2.7 に対応しないとの記述があった。
_wxPython Changelog | wxPython
wxPython 4.1.0 の .whl は以下から入手できる。
_wxPython - PyPI
ちなみに、以下で公開されている版は、wxPython 3.0.2.0 が最終版だった。
_Python Extension Packages for Windows - Christoph Gohlke
Python 3.9.11 64bit なら、2022/03/22現在、pip install wxPython -U とするだけで wxPython 4.1.1 がインストールできた。
pip install wxPython と打ったら wxPython 4.1.1 のインストール処理が始まったけど、しかしエラーが出てインストールできなかった。
ググってみたら、Python 2.7 で利用できる wxPython は 4.1.0 が最終版だった。それ以後は Python 2.7 に対応しないとの記述があった。
_wxPython Changelog | wxPython
wxPython Changelog
4.1.0 "Escaping the Quarantine"
24-April-2020
... This will be the last release to include binaries for Python 2.7. The code will likely still compile and be compatible with Python 2.7 for some time, but no effort will be put into keeping it that way.
wxPython 4.1.0 の .whl は以下から入手できる。
_wxPython - PyPI
- 32bit版 Python 2.7 なら、wxPython-4.1.0-cp27-cp27m-win32.whl を入手。pip install wxPython-4.1.0-cp27-cp27m-win32.whl でインストール。
- 64bit版 Python 2.7 なら、wxPython-4.1.0-cp27-cp27m-win_amd64.whl を入手。pip install wxPython-4.1.0-cp27-cp27m-win_amd64.whl でインストール。
ちなみに、以下で公開されている版は、wxPython 3.0.2.0 が最終版だった。
_Python Extension Packages for Windows - Christoph Gohlke
Python 3.9.11 64bit なら、2022/03/22現在、pip install wxPython -U とするだけで wxPython 4.1.1 がインストールできた。
[ ツッコむ ]
以上です。