I have a simple hello world flask app it was created using
virtualenv myApp
then i pip3 installed these modules below
flask flask_socketio flask_sqlalchemy
so inside my virtual myApp , if I execute python3 app.py
i can see my app running in my browser URL 127.0.0.1:5000 ...
If I have a friend and I want him/her to be able to run my program, without having to install any python related stuff in their windows machine. What should I do before passing my codes to them ?