Streamlit Executable

Hello, I have created an app that I do not intend to deploy since sensor connectivity is involved and it really only works if the scripts are being run locally, so I wanted to see if there was a way to create an executable of my project so that I could send it and people could download it on their machine and run it locally. Any tips? Is this possible?
Also to mention, I have a virtual environment that I created associated with this project.

Hello

if your project is on a server in your organisation and you have it in a folder with common access, what you have to do is that the local machines have the python interpreter installed, have the dependencies installed, streamlit, etc, then I use a .bat file in this way that converts it to an .exe (you can use the app [Bat To Exe Converter]). Then your users will be able to access the application.

@ECHO OFF
set root=path to your file\
call streamlit run "path to your file\app.py"

other options:
Electron