0

私の会社のサーバーは Python 2.4.3 を使用しています。wxPython を使用する必要がありますが、現在のバージョンの wxPython には Python 2.6 または 2.7 が必要です。

Windows 7 で wxPython を Python 2.4.3 と連携させるにはどうすればよいですか?

http://www.wxpython.org/download.php

PS「wxPython2.8-win32-unicode-py26」をインストールしてwxをインポートしようとしましたが、次のエラーが発生しました:

Traceback (most recent call last):

File "<pyshell#0>", line 1, in -toplevel-
import wx
File "C:\Python24\Lib\site-packages\wx-2.8-msw-unicode\wx\__init__.py", line 45, in -toplevel-
from wx._core import *
File "C:\Python24\Lib\site-packages\wx-2.8-msw-unicode\wx\_core.py", line 4, in -toplevel-
import _core_
ImportError: DLL load failed: The specified module could not be found.
4

1 に答える 1

1

わかりましたので、私はそれを理解しました。

「wxPython2.8-win32-unicode-py26」(wxPython 2.8.12.1) は Python 2.6 を必要とするため、Python 2.4 では機能しません。

そこで、Python 2.4 をサポートする wxPython 2.8.10.1 を見つけてインストールしたところ、動作しました。

于 2013-11-09T22:58:39.510 に答える