Dash failed installation

Hey, will do as soon as possible. I found somebody else having a very similar issue (if not even the same). This was his log and its very similar to mine:
LogPython: Error: Traceback (most recent call last):
LogPython: Error: File "<string>", line 1, in <module>
LogPython: Error: File "C:\Users\kanch\AppData\Local\Programs\Polygonflow\Dash\Modules\GN\GNL\GNLSetup.py", line 4, in <module>
LogPython: Error: from GN.LicenseManager import LicenseManagerWindow
LogPython: Error: File "C:\Users\kanch\AppData\Local\Programs\Polygonflow\Dash\Modules\GN\LicenseManager\LicenseManagerWindow.py", line 6, in <module>
LogPython: Error: from PySide6.QtCore import Qt, QSettings, QEvent, QPoint, QObject, QRectF
LogPython: Error: ModuleNotFoundError: No module named 'PySide6.QtCore'
LogPython: Error: Traceback (most recent call last):
LogPython: Error: File "<string>", line 1, in <module>
LogPython: Error: File "C:\Users\kanch\AppData\Local\Programs\Polygonflow\Dash\Modules\GN\GNL\GNLSetup.py", line 4, in <module>
LogPython: Error: from GN.LicenseManager import LicenseManagerWindow
LogPython: Error: File "C:\Users\kanch\AppData\Local\Programs\Polygonflow\Dash\Modules\GN\LicenseManager\LicenseManagerWindow.py", line 6, in <module>
LogPython: Error: from PySide6.QtCore import Qt, QSettings, QEvent, QPoint, QObject, QRectF
LogPython: Error: ModuleNotFoundError: No module named 'PySide6.QtCore'
I found this in https://discord.com/channels/826908885024636989/1332239644993130591/1332248545557876748
5 Replies
DanielFreden (Dash for UE5)
starting a thread in case we need a few messages @vointevate aha, good find! Trying the steps Ilgar mentioned in there is a good start for sure. And making sure the console window/s appear and do their thing properly (you can check when it runs so there does not seem to be any error in it/them). good to know you got the exact same error, thanks! And glad to hear you are excitied, we will certainly sort it out, but tomorrow perhaps as the devs are off now 😦
vointevate
vointevateOP2mo ago
👍 I already tried reinstalling. From reading the logs it says that it is missing a dependency. I will try to install it myself to python and see if that fixes it. Will let you know
DanielFreden (Dash for UE5)
Sounds like a smart idea for sure Just guessing here, but it could be the case that another plugin (default or external) is conflicting with Dash as well. In that case, it could help by trying to launch Dash in a fresh, empty basic project and see if that helps. If that works, you could try figuring out the problematic plugin in your main project, by disabling it, Close UE, Delete pipinstall folder inside of intermediate folder (inside the project) then start UE again. 🙌 I hope you manage to solve it tonight, you can send an update here later and then me and the devs can look into it deeper tomorrow🔥
vointevate
vointevateOP2mo ago
I fixed it by going into the Unreal Engine python location at \ProgramFiles\EpicGames\UE_your-version\Engine\Binaries\ThirdParty\Python3\Win64\ and manually installing the dependency. 1. cd \ProgramFiles\EpicGames\UE_your-version\Engine\Binaries\ThirdParty\Python3\Win64\ 2. python.exe -m pip install PySide6 3. done
DanielFreden (Dash for UE5)
Great work, thanks for sharing the details!

Did you find this page helpful?