A simple, cross-platform tool created for people who don't want to struggle with installing mods for Minecraft!
This project is designed to make the process of updating or installing large modpacks as painless as possible—no more manual downloads, file copying, or Minecraft crashes due to missing files.
- Easy to use: Just run and follow the instructions—no complex setup!
- Cross-platform: Works on Windows, macOS, and Linux.
- Backs up your old mods: Automatically renames your current
modsfolder tomods-oldbefore installing new mods. - Download and extract: Pulls your chosen modpack ZIP from a URL and installs it in seconds.
- Download the GUI version of the installer from the Releases tab.
- Launch the application by double-clicking it.
- Enter your modpack URL in the provided field or browse for a local ZIP file.
- Click Install and follow the on-screen prompts. Your mods will be installed automatically!
If you prefer the classic terminal approach:
-
Download the prebuilt executable for your OS from the Releases tab.
-
Open
cmd(Windows) or your terminal (macOS/Linux). -
Run the installer with your modpack URL:
Windows:
ModpackInstaller-Win.exe --url https://your.modpack.url/modpack.zip
macOS/Linux
./ModpackInstaller-Linux --url https://your.modpack.url/modpack.zip ./ModpackInstaller-OSX --url https://your.modpack.url/modpack.zip
Note:
The modpack must be a ZIP file containing all necessary mods.
Want to make installing modpacks even easier for your players or server community?
- Host your modpack somewhere example: a github.io website.
- Install .NET 8 SDK
- Clone this repo:
git clone https://github.com/MrGidor/Minecraft_Modpack_Installer.git - Build:
GUI Version:
Terminal command version:
dotnet publish Gui/Gui.csproj -c Release -r win-x64 /p:PublishSingleFile=true /p:PublishTrimmed=falseReplacedotnet publish Cli/Cli.csproj -c Release -r win-x64 /p:PublishSingleFile=true /p:PublishTrimmed=falsewin-x64withlinux-x64orosx-x64as needed. - Your standalone executable will be in the
\bin\Release\net8.0\win-x64\publishfolder.
- Your modpack must be a
.zipfile. - Inside the ZIP, include all mods you want installed (typically all
.jarfiles for/mods). - You can include additional folders (e.g., configs), but the installer extracts everything into your Minecraft
modsfolder, so it's worthless to include those in the zip.
PRs are welcome! If you have an idea for a new feature, open an issue or submit a pull request.
Enjoy your modded Minecraft, hassle-free!