Re: [PyQt] Problem freezing a Sqlite based PyQT app

2010-01-12 Thread Giovanni Bajo
On Mon, 2010-01-11 at 21:54 -0500, Demetrius Cassidy wrote: You probably forgot to include the sqlite3.dll with your redist package. Alternatively, you can try to use py2exe instead of cx_Freeze. It works pretty well for me and is good at picking up dependencies. AFAIK, py2exe doesn't have

Re: [PyQt] Problem freezing a Sqlite based PyQT app

2010-01-12 Thread Demetrius Cassidy
I actually had nothing but problems with PyInstaller. In my instance, I am using Twisted + PyQt4 in my app, so I could never even get it to run while frozen. Not to mention it seems to want to pickup every dll in my system to package it into my app (like kernel32.dll). You can manually copy

Re: [PyQt] Problem freezing a Sqlite based PyQT app

2010-01-11 Thread Claudio Felix
2010/1/11 Anil ani...@atlastooling.com.au Have you included sqldrivers folder in to your package? On 12/01/2010 11:55 AM, Claudio Felix wrote: Hello everyone, I've been developing a PyQT database app which uses a SQlite3 database. It is working just fine on my development environment,

Re: [PyQt] Problem freezing a Sqlite based PyQT app

2010-01-11 Thread Demetrius Cassidy
You probably forgot to include the sqlite3.dll with your redist package. Alternatively, you can try to use py2exe instead of cx_Freeze. It works pretty well for me and is good at picking up dependencies. Claudio Felix wrote: Hello everyone, I've been developing a PyQT database app which uses