Is there a relatively lightweight (development environment / platform / language) to write a specialized standalone GUI tool to run on a single machine.
No need to scale, no need to deploy for multiple users, or run on any network. Hopefully portable and just need to copy and run a compiled executable like .exe.
.NET: Needs the .NET Framework installed (likely on Windows) but Visual Studio is a huge monster. Compiled executables are small and easy to distribute. Windows GUI apps not compatible with Linux, since Mono uses GTK instead.
Java: Eclipse and NetBeans with its required JVM are big downloads. Don't see why I need to download a 100 to 300 Mb and just to run a 1MB/500Kb small tool.
QT: Need to do C++ and pesky memory management. Not sure about the compiler and IDE size.
Electron: Bundles in the entire Chromium engine and NodeJS. Minimum size would be at least 60 Mb? Using JavaScript for anything longer than 100 lines makes me want to kill myself.
Python: Heard it has problems with "pip install" and some Python packages if installing on Windows. Some Python packages need to compile C/C++ source codes during install and assumes GCC is available like Linux/Unix systems. But maybe can a make a GUI using wxPython.
Anything else to suggest?
No need to scale, no need to deploy for multiple users, or run on any network. Hopefully portable and just need to copy and run a compiled executable like .exe.
.NET: Needs the .NET Framework installed (likely on Windows) but Visual Studio is a huge monster. Compiled executables are small and easy to distribute. Windows GUI apps not compatible with Linux, since Mono uses GTK instead.
Java: Eclipse and NetBeans with its required JVM are big downloads. Don't see why I need to download a 100 to 300 Mb and just to run a 1MB/500Kb small tool.
QT: Need to do C++ and pesky memory management. Not sure about the compiler and IDE size.
Electron: Bundles in the entire Chromium engine and NodeJS. Minimum size would be at least 60 Mb? Using JavaScript for anything longer than 100 lines makes me want to kill myself.
Python: Heard it has problems with "pip install" and some Python packages if installing on Windows. Some Python packages need to compile C/C++ source codes during install and assumes GCC is available like Linux/Unix systems. But maybe can a make a GUI using wxPython.
Anything else to suggest?
