Working on Installing Amulet on Ubuntu
-
Working on Installing Amulet on Ubuntu
Minecraft world editors tend to lag behind the latest version of MC. When looking around for an editor to work with our version of MC 1.16.3, the only option I could find that would actually open a map was Amulet — an new editor currently under development.
I successfully installed the Amulet world editor for Minecraft worlds in Windows 10. Amulet is still in beta, so the complied builds are limited — only available for windows. That means Amulet for Linux has to be built from the source at this point.
Building Amulet from source required a lot of steps:
1. First, I had to install Python.
sudo apt-get update
sudo apt-get install python
Amulet requires Python 3.7+, so its good to check your version after install:
python --version
If this shows Python 2.7 or similar, try this since now Ubuntu installs multiple versions in its distro:
python3.8 --version
2. Python needs the PIP package manager to download and install dependencies:
sudo apt-get python3-pip
Check to see that it installed:
pip --version
4. Correct wxPython error
https://wxpython.org/pages/downloads/index.html
requires knowing GTK version
3. Download and install Amulet source
For linux run
python -m pip install -r requirements_linux.txt
https://github.com/Amulet-Team/Amulet-Map-Editor
5. Correct git error (switch to prep for install)
git warning, add to PATH
https://askubuntu.com/questions/1114643/adding-folders-to-your-path-environment-variable
Log in to reply.