Convert .litematic files from Minecraft's Litematica mod to:
.bp(Axiom Blueprint files).schem(WorldEdit Schematic files)
Option 1: Download Release (Recommended)
- Go to Releases
- Download the latest release
- Extract to a folder
Option 2: Clone with Git
- Navigate to, or create, a folder where you want the project
- Open terminal/command prompt there, then run:
git clone https://github.com/paxxxw/litematic-converter.git
- This creates a
litematic-converterfolder in your current location
-
Install Python (3.7 or newer) from python.org
⚠️ Important: Check "Add Python to PATH" during installation!
-
Install dependencies:
- First, navigate into the project folder:
- If downloaded: Extract the ZIP file, then go INSIDE the extracted folder (not just where you extracted it). You should see files like
README.md,requirements.txt, etc. - If cloned: Go INSIDE the
litematic-converterfolder that was created. You should see files likeREADME.md,requirements.txt, etc.
- If downloaded: Extract the ZIP file, then go INSIDE the extracted folder (not just where you extracted it). You should see files like
- Then, open terminal/command prompt from inside that folder
- Copy and paste this command in the terminal/command prompt:
pip install -r requirements.txt- Press Enter and wait for it to finish
- First, navigate into the project folder:
-
Verify everything works (optional but recommended):
python setup_check.py
GUI (recommended for most users):
python litematic_converter_gui.py
GUI Features:
- File browser (select one or many files)
- Batch conversion (can convert multiple files at once)
- Smart folder detection (finds your Minecraft directories automatically)
- Progress tracking with detailed logs
- Cross-platform (Windows, macOS, Linux)
Command line for .litematic → .bp (single files only):
python litematic_to_bp_converter.py mycastle.litematic mycastle.bp
Command line for .litematic → .schem (single files only):
python litematic_to_schem_advanced.py mycastle.litematic mycastle.schem
Note: .litematic files and output go in the project folder ONLY if using the command line
Blueprint Converter (.litematic → .bp):
- Creates Axiom-compatible files with 3D thumbnails
- Preserves all block properties and tile entities
- Supports banners with custom patterns
Schematic Converter (.litematic → .schem):
- Modern WorldEdit format support
- Handles multiple regions and entities
- Preserves metadata and banner patterns
Important: Build names in Axiom match your .litematic filename (without extension)
- .litematic - Litematica mod schematic files
- .bp - Axiom Blueprint files (with 3D thumbnails)
- .schem - WorldEdit/WorldGuard schematic files
-
"ModuleNotFoundError" when running
- Solution: Install dependencies
pip install -r requirements.txt -
"Permission denied" errors
- Solutions:
- Run as administrator (Windows) or with sudo (Mac/Linux)
- Or choose a different output directory
- Solutions:
-
GUI doesn't open
- Solutions:
- Ensure tkinter is installed (usually comes with Python)
- On Ubuntu/Debian:
sudo apt-get install python3-tk
- Solutions:
-
Conversion fails
- Solutions:
- Check that your
.litematicfile isn't corrupted - Ensure you have write permissions to the output directory
- Try converting to a different location
- Check that your
- Solutions:
-
"File not found" or "No such file or directory"
- Solutions:
- Ensure the
.litematicfile path doesn't contain special characters (like&,%, or unicode symbols) - Try moving the file to a simpler folder path (e.g., Desktop)
- Check that the filename doesn't have extra spaces at the beginning or end
- Ensure the
- Solutions:
-
Conversion takes extremely long or appears frozen
- Solutions:
- Very large builds can take up to a minute (depending on PC hardware)
- Check Task Manager/Activity Monitor - if CPU usage is high, it's still working
- Try converting a smaller section first to test if the file is valid
- Solutions:
Issues and pull requests are welcome! Please:
- Check existing issues before creating new ones
- Provide sample
.litematicfiles for bug reports - Include error messages and Python version info
This project is open source. Feel free to use, modify, and distribute.
- Read this README thoroughly
- Check the troubleshooting section
- Try the command line versions if GUI has issues
- Create an issue with details about your problem