I am working in an offline-environment, and am trying to deploy standalone Python-based applications with PyInstaller
. I have been successful in all the previous pojects thus far, but for the latest one involving Orange3, I have the following problem.
I tried packaging Orange3 as a standalone executable with PyInstaller
via the command pyinstaller setup.py
(which does not work) as I could not find a main
script.
Is there currently a way which I can package orange3 as a standalone program? If there are solution(s) with PyInstaller
or other libraries, it will be of great help!
The entrypoint of Orange3 is
Orange/canvas/__main__.py
. Apyinstaller Orange/canvas/__main__.py
should work better.