Based on input data, I have to generate the plots using python scripting and it was run successfully with plots displayed. Later, unfortunately, after conversion from .py to .exe file, the outputs plots are not generated when clicked on .exe file, What may be the problem with .exe? Does anyone face a similar issue?
1 Answer
it could be number of things, dependencies are not included with the .exe file, or your program reads from input files that are not in the same directory as the .exe file
run the .exe in the same directory as .py and see if the problem persists.
1 Comment
Srinivasa Kumar Oruganti
Thanks for your reply Azeer. I am giving the input file (.txt) as dynamic. When the .exe is executed, it will ask for the user input file path and then execute it. Even I tried copying the i/p file and .exe at the same location path.
fig.show()missing?