When launching the installation it stops and says that I must have at least Windows 8.1!
The PC has Windosw 10 updated!
Is it necessary to uninstall version 8.0.2 before installing 9…x.x?
Is that the problem?
The installer is a NSIS installer and uses NSIS Windows version detection.
!ifdef MSVC
; MSVC builds use python 3.8+ which dropped windows 7 support and will crash
${IfNot} ${AtLeastWin8.1}
MessageBox MB_OK|MB_TOPMOST $(ERROR_WIN_MIN)
Quit
${EndIf}
!endif
For some reason that fails on your platform. NSIS “AtLeastWin8.1” does some checks on the system to find out its version. Is there anything special in your Windows installation?