I created a Jython application and I would like to distribute it among my friends. I do not want them to install Jython themselves. They just have Java SE (JRE) installed, and I want to pack the application so that they can run it by simply double-clicking the file. The application is a graphical desktop application.
I'm just wondering if I can put my application files in the Jython directory, create a batch file with java -jar jython.jar myapp.py and distribute the entire folder. Will this work for everyone? Why could this fail?
thank
source
share