Troubleshooting - Fenixin/Minecraft-Region-Fixer GitHub Wiki

Troubleshooting


When I do something like:

python region-fixer.py C:\Users\It is me\MC\world

I get something like:

Warning: The folder c:\users\It doesn't exist. I'll skip it.
Warning: The folder is doesn't exist. I'll skip it.
Warning: The folder me\MC\world doesn't exist. I'll skip it.**

Solution:

If your world has spaces in the path you have to write it between quotation marks like so:

python region-fixer.py "C:\Users\It is me\MC\world"

Every space means a new argument, that is why Region-Fixer says three times that those folder doesn't exist.


When I try to run Region Fixer using python nothing happens, like this:

C:\python region-fixer.py "C:\Users\It is me\MC\world"
C:\>

Or it gives me errors like:

C:\python region-fixer.py "C:\Users\It is me\MC\world"
'python' is no recognized as an internal or external command, operable program or batch file.
C:\>

Solution:

Most probably python is not in your PATH and that means that Windows doesn't know how to run the regionfixer script.

It seems that the easiest way to fix this is to install python using the Microsoft Store. Just open you start menu and write "Microsoft Store", in there search for "Python" and install the latest 3.x version (the x meaning the biggest number), it should work like a charm.

If you have already installed python you can add it to your path, here is an stackoverflow answer on how to do it:

https://stackoverflow.com/a/44502125