0
Python executable with SQLite
I am trying to build up a new project with Python Tkinter and Sqlite . Just wanted to know Once I have built the program which succesfully puts in data in db , can I convert it to exe ? If not Then How can we convert this to exe ? I mean what would be d steps? Sorry if it sounds like a naive query
4 Antworten
0
Try cx_freeze https://cx-freeze.readthedocs.io/en/latest/index.html
0
Thanks will read it out ..just so we are clear this will also convert all db files and everything to a single .exe and then when I run the .exe it will create the db files as per code ...?
0
No it converts py file to exe. It suppose that in py file you connect to db, you do not need db file.
0
Thanks let me try n get back