Do Python and wxPython run on Windows 98?

I am trying to write an application that should work on both Windows 98 and XP. I decided to go with Python, but I even had problems installing it on Win'98 (the Python 2.7 installer talks about the missing features of the Windows installer, but AFAIK 2.0 is the latest version of Windows Installer compatible with "98").

  • Does anyone have a Windows 98 working environment with Python and wxPython? How did you earn it? I don't need Python 2.7, but 2.4 or 2.5 would be nice.
  • If not, what other high-level language would you suggest that is actively supported, can display Windows widgets and work with Windows 98? (asm / C / C ++ and other low-level languages ​​is a simple application whose main task is to display windows and dialogs).
+4
source share
2 answers

I am sure we used Python2.4 and wxPython on the way back.

I don’t have a win98 machine to test it, but it looks at least Python2.5.4 for win98

I think win98 support may have been omitted for 2.6

The wxPython download page says it

Microsoft Windows

The wxPython version for Win32 is distributed as a set of standard self-installing executable files. This allows you to use the Start menu and Add or Remove Programs like any other Windows software.

There are two versions of wxPython for each of the supported versions of Python on Win32. They are almost identical, except that one of them was compiled with support for the Unicode version of the platform APIs. Unless you said otherwise, you probably want to get a Unicode WxPython assembly. Although they are not nativly Unicode, such as NT systems, the wxPython Unicode assembly will also mainly work on Windows 98 / Me systems using hacked Microsoft MSLU (or unicows.dll), which translates the unicode API calls ansi API calls. However, the coverage of the API is not complete, so there are some difficulties bugs are hiding there, so the best you need to update if possible, otherwise Windows 98 / Me users may want to try ANSI instead.

and they still release installers for Python2.5

+6
source

Yes, Python has lost support for Win9x / NT in version 2.5.4.

However, there are alternative assemblies: http://www.msfn.org/board/topic/162317-python-27-for-windows-95/

+3
source

All Articles