I need to convert a python script that contains a large number of large dependencies such as opencv, bs4 and selenium into an electable file that can run on a system that dose not have python installed. However all the "how to's" on how to convert .py to .exe never show how to do it with such imports and dependencies (always on a simple 'hello world' program).
When I have tried converting to .exe with all these dependencies I always get a missing dependency error.
I have tried with Pyinstaller and cx_Freeze, py installer never worked at all any time I had any dependencies on, however cx_Freeze did work for some of my other programs. but not on the opencv program.
What is the proper way of converting .py to .exe with a large amount of dependencies?