OmegaK2 / PyPoE

Collection of Python Tools for Path of Exile
Other
239 stars 92 forks source link

Can't get pypoe_ui to run #139

Closed drac69 closed 3 years ago

drac69 commented 3 years ago

For whatever reason I can't get "pypoe_ui" to start up, I see the spinning mouse cursor after executing the command but nothing shows on the screen. I've tested this on another W7 vm incase my current installation has something fucked up, but got the same thing. Also compiled the whole ooz project and placed the "libooz.dll" inside python's folder but no change.

Log after performing "pip install -e .[full]" inside "PyPoe" folder where "setup.py" is located.

Is there another log I can provide for more information or am I lacking some critical information ??

scottmudge commented 3 years ago

Same issue for me.

scottmudge commented 3 years ago

I got it running.

PyPoE\ui\shared\file\handler.py has a bug.

from PyPoE.poe.file.ggpk import extract_dds

should be

import PyPoE.poe.file.file_system as file_system

And near line 384,

file_data = io.BytesIO(extract_dds(file_bytes))

should be

file_data = io.BytesIO(file_system.extract_dds(file_bytes))

markliu06 commented 3 years ago

I don't think it would work after 3.11.2 patch. OmegaK2 knew this issue.