I am trying to run orange
(forked as orange3-master
and downloaded from https://github.com/biolab/orange3) with the following script run.py
:
if __name__ == '__main__':
import os
os.chdir('orange3-master/Orange/canvas')
os.system('python __main__.py')
where in Anaconda prompt, running python run.py
allows me to open up orange
.
Now, as using PyInstaller
to make orange
into a standalone program seems quite an impossible feat for me at the moment, I tried the following:
- Run
pyinstaller run.py
. - In
dist/run/
(the output folder ofpyinstaller
), copy overorange3-master
into the same directory asrun.exe
, then runrun.exe
.
However, it does not seem to work as running run.exe
, the window closes in a split second, and I am unable to observe any error messages.
Some insights and recommendations will be of great help...