Lincoln-LM / pla-reverse-gui

PySide6-based GUI for Seed Cracking and RNG w/o CFW assistance in Pokemon: Legends Arceus
GNU General Public License v3.0
14 stars 4 forks source link

Error on not having a module despite installing it #15

Closed gameboi4784 closed 1 month ago

gameboi4784 commented 1 month ago

When trying to run main.py, I get the error Traceback (most recent call last): File "C:\Users\user\pla-reverse-gui\main.py", line 5, in <module> from pla_reverse_gui.window import MapWindow File "C:\Users\user\pla-reverse-gui\pla_reverse_gui\window\__init__.py", line 3, in <module> from .map_window import MapWindow File "C:\Users\user\pla-reverse-gui\pla_reverse_gui\window\map_window.py", line 3, in <module> from numba_pokemon_prngs.data.encounter import ( ModuleNotFoundError: No module named 'numba_pokemon_prngs.data.encounter' despite having numba_pokemon_prngs installed

Lincoln-LM commented 1 month ago

When trying to run main.py, I get the error Traceback (most recent call last): File "C:\Users\user\pla-reverse-gui\main.py", line 5, in <module> from pla_reverse_gui.window import MapWindow File "C:\Users\user\pla-reverse-gui\pla_reverse_gui\window\__init__.py", line 3, in <module> from .map_window import MapWindow File "C:\Users\user\pla-reverse-gui\pla_reverse_gui\window\map_window.py", line 3, in <module> from numba_pokemon_prngs.data.encounter import ( ModuleNotFoundError: No module named 'numba_pokemon_prngs.data.encounter' despite having numba_pokemon_prngs installed

pla-reverse-gui requires a specific branch and version of numba_pokemon_prngs that is specified in the requirements.txt. You probably shouldn't be installing dependencies by hand if thats what got you the wrong version but just running python -m pip install --upgrade --force-reinstall -r requirements.txt should force it to install the correct one.