0

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!

Stoner
  • 846
  • 1
  • 10
  • 30

1 Answers1

0

The entrypoint of Orange3 is Orange/canvas/__main__.py. A pyinstaller Orange/canvas/__main__.py should work better.

ndclt
  • 2,590
  • 2
  • 12
  • 26