I have a python project called deduplication which works with the help of multiple scripts. As in deduplication.py makes use of readCSV.py and dbmanager.py. So how can I turn the deduplication.py into an executable if it is dependent on the other 2 .py files?
Asked
Active
Viewed 28 times
-1
-
As you use pyinstaller try using auto-py-to-exe (you must install gevent as well). It gives you a GUI to work with and creates the pyinstaller code itself. This means that you can add all your .py files much easier – Thomas May 04 '20 at 14:37
-
This may help: https://stackoverflow.com/questions/12059509/create-a-single-executable-from-a-python-project – Kamil Jun 25 '21 at 13:59