Help compiling PrusaControl?
I'm trying to compile PrusaControl from source, and I'm running into some problems that I'm hoping someone can help me with.
My platform is Windows 10 64 bit. Here's what I've done so far:
At this point, the pyinstaller command finished with errors and created a bunch of files under the build\PrusaControl_Win subdirectory under the source code directory.
So far so good, but when I run the PrusaControl.exe file it pops up a window with the error message "Failed to execute script main".
Any ideas what I'm missing?
Re: Help compiling PrusaControl?
Have the same issue and got no answer yet from Prusa github.
Re: Help compiling PrusaControl?
For anyone else having the same problem. I did get some help from the email address on the PrusaControl Github. Essentially it was 3 problems:
1) Stopping trying to compile anything and just run "python main.py" (I guess I've spent to much time in c# land).
2) By following the error messages in step 1, I figured out that, in addition to the dependencies listed in the readme, you also need to install a python module called "Image". "pip install image" seem to be the easiest way.
That's at least got me a little closer,