+ 2
How to make an exe or etc with python
I know how to write codes , but how to make it an app?
3 Answers
+ 2
For Android: www.kivy.org
+ 1
To install the plugin "pyinstaller" is a way to convert .py to an exe file.
+ 1
exe suggests that you use Windows.
if you were using Linux you can take one more approach.
You can archive every file you have in your script and add on the beginning of file python interpreter.
This way when you call ./your_archived_script it will execute code from __main__.py file