I have a selenium python program I want converted into a single executable. In the program, I import various selenium modules, and I don't want the user to have to install selenium using commands such as pip3 install selenium
I want these all packaged right into the executable. My program also depends on another executable through means of a file path.
How can I package the:
- main.py file itself
- dependency.exe executable dependency (referenced inside of main.py by means of its file path)
- Selenium module
all into one executable? Any answers appreciated, can't find a guide to this.