Not yet available due to the whole application being stopped when trying to stop MAC. If you're fine with this, try building it yourself.
- For more recent distros (Arch, Fedora 40, etc.) and theming on KDE, download the standard MegaLauncher binary. (Built on Arch Linux)
- For distros with a glibc version older than 2.39, download MegaLauncher-compat instead. (Built on Ubuntu 22.04)
If no release binary works for you, try building manually instead:
- Either clone the repo with git:
git clone https://github.com/com-name-here/megalauncher.git
- Or download an archive directly
- Install Python 3.12. Make sure to add it to PATH in the installer!
- Install requirements (Replace
path\to\
with actual path)
pip install -r path\to\requirements.txt
- Build the executable with PyInstaller (Replace
path\to\
with actual path)
pyinstaller --name="MegaLauncher" --windowed --onefile --icon=path\to\icon.ico path\to\main.py
- Profit! (You'll find the executable in a folder called
dist
, which is located in the folder you ran the command from. You should probably look in your user folder.)
- Install Python 3.12 from your distro's package manager
- Install requirements (Replace
path/to/
with actual path)
pip install -r path/to/requirements.txt
- Build the executable with PyInstaller (Replace
path/to/
with actual path)
pyinstaller --name="MegaLauncher" --windowed --onefile path/to/main.py
- And we're done! (Hopefully)