Closed njt1982 closed 4 years ago
You need to use Python 3.7 or newer (jawa requires it).
Ok... so no I have a new error ;)
➜ Burger git:(master) python3 --version
Python 3.7.3
➜ Burger git:(master) python3 setup.py install
running install
error: can't create or remove files in install directory
The following error occurred while trying to add or remove files in the
installation directory:
[Errno 2] No such file or directory: '/Library/Python/3.7/site-packages/test-easy-install-4334.write-test'
The installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:
/Library/Python/3.7/site-packages/
This directory does not currently exist. Please create it and try again, or
choose a different installation directory (using the -d or --install-dir
option).
Guessing I either need to set an install directory or make that folder (really wanna install stuff for this package into such a global location tbh?)
python3 setup.py install --root ./
< That seemed to run without error...
Copying Burger.egg-info to ./Library/Python/3.7/site-packages/Burger-0.3.0-py3.7.egg-info
ahhh
python3 setup.py install --user
^ This worked..
python3 munch.py ~/Desktop/server.jar
[
{
"achievements": {},
"biomes": {
"biome": {
"badlands": {
"class": "bko",
"field": "M",
"height": [
0.1,
...
...
Maybe this will help someone in the future. Closing for now.
Ironically, it didn't help me in this case... I was hoping to find the smelting recipes in the data.
You should be able to get smelting recipes via data generators (or just looking in the data/minecraft/recipes/
folder). Burger only includes regular crafting recipes, because the current UI code only exists for them and I haven't felt a need to add the other recipe types.
(Side note, for 1.16 snapshots, you need to use my 1.16-dev branch. That'll be merged into master when 1.16 releases, and when another version is started I'll use a new branch for that)
Thanks for the tip @Pokechu22
I have run the setup.py install and it seems to have worked...
What am I doing wrong/missing? 😉
Might be an idea to have paragraph in the README about installation steps/requirements?