Learn · guides
How to Install Fabric Loader (Step by Step)
Install Fabric in minutes: download the official installer, run it, pick your Minecraft version, then launch. Clear steps for every launcher.
Installing Fabric takes one tool and a few clicks. Download the official Fabric installer from fabricmc.net, run it, pick the Minecraft version you want to mod, and let it install. A new profile appears in your launcher. Select it, launch the game once, and the mods folder is ready. Your vanilla installation stays completely intact.
What Fabric is
Fabric is a lightweight mod loader that injects itself into Minecraft at launch. It reads your mods folder and loads each mod before the game starts. Because it hooks into the launcher rather than modifying the game jar, you can switch between modded and vanilla anytime by picking a different profile.
Step by step
Download the Fabric installer
Go to fabricmc.net, click Download, and grab the Installer JAR. It's a small Java program, around 1 MB.
Run the installer
Double-click the JAR file, or from a terminal run
java -jar fabric-installer-*.jar. A window opens.Pick your Minecraft version
In the installer, select the exact Minecraft version you plan to play. Older versions, current releases, and snapshots are all listed. Match this precisely—version mismatches are the top cause of crashes.
Choose install location
The installer defaults to your
.minecraftfolder. For most setups, this is correct. If you use a custom installation, point the installer to it.Install
Click the Install button. The installer downloads loader files and writes a new profile to your launcher.
Select the Fabric profile
Open your Minecraft launcher and find the new profile (usually named
fabric-loader-X.Y). Click it to select it.Launch once
Click Play. Minecraft starts with the Fabric loader. Let it finish loading completely, then close the game. This creates the mods folder.
After this, your mods folder is ready at %appdata%\.minecraft\mods (Windows), ~/Library/Application Support/minecraft/mods (macOS), or ~/.minecraft/mods (Linux).
What the installer actually does
The Fabric installer does not modify your game jar. Instead, it:
- Creates a new launch profile in your launcher
- Downloads the Fabric loader files
- Writes a
fabric-loader-X.Y.jsonfile into your launcher's version folder
When you launch that profile, the launcher starts the Fabric loader first, which loads your mods, and then starts the game normally. Because it's a separate profile, your vanilla profile is completely unaffected.
Official installer vs launcher support
You have two paths to get Fabric installed:
| Method | When to use | Notes |
|---|---|---|
| Official installer | Standard Minecraft launcher | One download, standalone, works everywhere |
| Launcher with built-in support | MultiMC, Prism Launcher, etc. | Faster; the launcher handles version matching |
Both end the same way: a Fabric profile you select and launch from.
Files and folders
After installation, your setup looks like this:
.minecraft/
├── versions/
│ ├── 1.21/
│ ├── fabric-loader-1.21/ ← new profile
│ └── ...
├── mods/ ← created after first Fabric launch
└── launcher_profiles.json ← updated with new profile
Common problems and fixes
- Installer won't open: Java may not be installed or the JAR is associated with the wrong program. Install a current Java runtime from adoptium.net and try again.
- No Fabric profile in the launcher: refresh the launcher (often File > Refresh) or restart it completely. The new profile should appear in the version dropdown.
- Game crashes on startup: check the launcher log. Common causes are version mismatch (loader version doesn't match Minecraft version) or a mod incompatibility. Verify all mods target the same version.
- Wrong Minecraft version selected: re-run the installer and pick the correct version. The installer can write multiple profiles, one per version you want to mod.
- Mods folder doesn't appear: launch the Fabric profile and let the game fully load at least once. The folder is created on first run.
Next steps
Once Fabric is installed:
- Drop mod JARs into your mods folder
- Make sure all mods target the same Minecraft version
- Launch the Fabric profile and the mods load automatically
FAQ
No. Fabric and Forge are separate mod loaders. You install one or the other per profile, not both at the same time. You can have both profiles in your launcher, just not in the same game instance.
No. The installer adds a new profile to your launcher and leaves your vanilla profile and game jar completely untouched. Switch profiles anytime to go back.
It's created inside your Minecraft directory the first time you launch the Fabric profile. On Windows: %appdata%\.minecraft\mods. On macOS: ~/Library/Application Support/minecraft/mods. On Linux: ~/.minecraft/mods.
Yes, some launchers (MultiMC, Prism) have built-in Fabric support and skip the standalone installer entirely. But the official installer works everywhere and takes less than a minute.