macOS Installation Guide
Prerequisites
Before installing Qraft on macOS, ensure you have:
- Minecraft Java Edition installed
- macOS 10.14 or later
- Administrator privileges
- Stable internet connection
Mod Loader Options
Forge (Recommended for Qraft)
Advantages:
- Maximum Qraft compatibility
- Extensive mod ecosystem
- Stable performance
- Better modpack integration
Fabric (Performance Option)
Advantages:
- Faster startup times
- Lower resource usage
- Quick updates
- Modern architecture
Recommendation: Choose Forge for the most stable Qraft experience.
Step 1: Install Minecraft 1.20.1
Verify or Install Minecraft
- Open the Minecraft Launcher
- Click on Installations
- Check if you have version 1.20.1 installed
- If not available:
- Click New Installation
- Name: “Qraft 1.20.1”
- Version: Release 1.20.1
- Click Create
Install Java (if needed)
Method 1: Homebrew (Recommended)
# Install Homebrew if not already installed
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Install Java 17
brew install openjdk@17
# Link Java
sudo ln -sfn /opt/homebrew/opt/openjdk@17/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk-17.jdkMethod 2: Direct Download
- Visit Adoptium
- Download macOS version of Java 17
- Install the
.pkgfile
Step 2: Choose Your Mod Loader
Forge (Recommended for Qraft)
Advantages:
- Maximum Qraft compatibility
- Extensive mod ecosystem
- Stable performance
- Better modpack integration
Fabric (Performance Option)
Advantages:
- Faster startup times
- Lower resource usage
- Quick updates
- Modern architecture
Recommendation: Choose Forge for the most stable Qraft experience.
Step 3A: Install Forge
Download Forge
- Visit files.minecraftforge.net
- Select version 1.20.1
- Click Installer under “Download Recommended”
- Wait 5 seconds, then click Skip
- Download the installer file
Run Forge Installer
Terminal Method:
cd ~/Downloads
java -jar forge-1.20.1-*-installer.jar --installClientGUI Method:
- Navigate to your Downloads folder
- Double-click the installer file
- If you get a security warning:
- Go to System Preferences → Security & Privacy
- Click Open Anyway
- Select Install client
- Click OK and wait for completion
Verify Forge Installation
- Open Minecraft Launcher
- Select forge profile
- Click Play
- Confirm “Forge” appears in main menu
- Exit game to continue installation
Step 3B: Install Fabric (Alternative)
Download Fabric
- Visit fabricmc.net/use/installer
- Download macOS installer
- Save to accessible location
Install Fabric
Terminal Method:
cd ~/Downloads
java -jar fabric-installer-*.jar clientGUI Method:
- Run the Fabric installer
- Set Minecraft Version: 1.20.1
- Select latest Loader Version
- Keep Create profile checked
- Click Install
Install Fabric API
- Download Fabric API from CurseForge
- Choose version for Minecraft 1.20.1
- Save the .jar file for later
Step 4: Locate .minecraft Folder
macOS Methods
Method 1: Go to Folder (Easiest)
- Open Finder
- Press Cmd + Shift + G
- Type:
~/Library/Application Support/minecraft - Press Enter
Method 2: Terminal
cd ~/Library/Application\ Support/minecraftMethod 3: Show Library Folder
- Open Finder
- Press Cmd + Shift + H (go to Home)
- Press Cmd + Shift + . (show hidden files)
- Navigate to Library → Application Support → minecraft
Method 4: Minecraft Launcher
- Open Minecraft Launcher
- Click Installations
- Click the folder icon next to your installation
- Navigate to the
.minecraftfolder
Step 5: Download Qraft
Official Download Sources
Always download from official sources:
- Primary: CurseForge - Qraft
- Alternative: Modrinth - Qraft
- Official: qraft.ai/downloads
Download Process
Terminal Method:
# Using curl
curl -L -o qraft-forge-1.20.1-[version].jar https://www.curseforge.com/minecraft/mc-mods/qraft/download/[file-id]GUI Method:
- Visit an official download source
- Filter for Minecraft 1.20.1
- Select your mod loader:
qraft-forge-1.20.1-[version].jar(for Forge)qraft-fabric-1.20.1-[version].jar(for Fabric)
- Download the file
- Verify file integrity (check file size and name)
Security Check
Before proceeding, verify:
- File extension is
.jar - Filename contains “qraft” and “1.20.1”
- Downloaded from official sources only
- File size is appropriate (typically 5-15MB)
Step 6: Install Qraft
Prepare Mods Folder
Terminal Method:
cd ~/Library/Application\ Support/minecraft
mkdir -p modsGUI Method:
- Navigate to your
.minecraftfolder (from Step 4) - Look for a
modsfolder - If it doesn’t exist, create it:
- Right-click in
.minecraftfolder - Select New Folder
- Name it
mods
- Right-click in
Install Mod Files
Terminal Method:
# For Forge
cp ~/Downloads/qraft-forge-1.20.1-[version].jar ~/Library/Application\ Support/minecraft/mods/
# For Fabric (both files needed)
cp ~/Downloads/fabric-api-[version]+1.20.1.jar ~/Library/Application\ Support/minecraft/mods/
cp ~/Downloads/qraft-fabric-1.20.1-[version].jar ~/Library/Application\ Support/minecraft/mods/GUI Method:
For Forge Users:
- Copy
qraft-forge-1.20.1-[version].jar - Paste into the
modsfolder - Do not extract the jar file
For Fabric Users:
- Copy both files to
modsfolder:fabric-api-[version]+1.20.1.jarqraft-fabric-1.20.1-[version].jar
- Do not extract either file
Step 7: Launch Qraft
First Launch
- Open Minecraft Launcher
- Select appropriate version:
- forge (for Forge installation)
- fabric-loader (for Fabric installation)
- Click Play
- Create a new world
- Wait for game to load (first launch takes longer)
- Once inside the new save run
/loginto connect to Qraft’s servers
Success Indicators
You’ll know Qraft is working when:
- Game launches without errors
- Qraft mod appears in mod list (F3 + H)
/logincommand works in-game- You can access Qraft features
Troubleshooting
Common macOS Issues
Issue: “Java not found”
# Check Java version
java -version
# If using Homebrew
brew install openjdk@17
sudo ln -sfn /opt/homebrew/opt/openjdk@17/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk-17.jdkIssue: “App can’t be opened because it is from an unidentified developer”
- Go to System Preferences → Security & Privacy
- Click Open Anyway under “General” tab
- Or right-click the file and select Open
Issue: “Permission denied” when accessing Library folder
# Make Library folder visible
chflags nohidden ~/LibraryIssue: Game crashes on launch
- Solution: Check that you downloaded the correct mod version for your loader
- Check logs:
~/Library/Application Support/minecraft/logs/latest.log
Issue: Mod not loading
- Solution: Ensure the .jar file is in the
modsfolder, not extracted - Verify file permissions:
ls -la ~/Library/Application\ Support/minecraft/mods/
Issue: Launcher won’t start on Apple Silicon Macs
# Run with Rosetta if needed
arch -x86_64 java -jar minecraft-launcher.jarNeed Help?
If you encounter issues:
- Check the Troubleshooting Guide
- Visit our Discord Server
- Report bugs on GitHub
- Check macOS-specific issues in our FAQ