Closed rover-t closed 3 years ago
An alternate solution is when running the code from the comandline using ...Conversion-Application> python .\src\main.py
instead of ...src> python .\main.py
I'll use this for now. I'm going through and finding issues with the integration and doing my best to find solutions to correct them.
@BigWub67 I tried to run you GUI code by running the main.py file from the command line. I got an error that seems to have to do with how you are setting directories. Here is the text of the error:
I think the error is actually beginning on the previous line where
root='output'
. If I'm am understanding the situation correctly in your code the initial directory is assumed to be the project folder which contains src, output, etc. I am assuming this would happen if you are running the project from an IDE. However Jame's and my code is written with the initial directory being within the src folder which is where it is when the code is run directly from the command line. I am able to resolve this issue temporarily by usingos.chdir("..")
in the appGUI.py main() function.