Sorry some additional informations:
WinXP 32
Python XY distribution
pyinstaller 1.5.1
tables 2.3.1

Samuel


Le 26/04/2012 14:24, sgarcia a écrit :
Hi list,
I am have the same problem avirl 2012.
This code do not work with pyinstaller (with simple way) unless you
comment import tables.


#####mainwindow.py:

from PyQt4.QtCore import *
from PyQt4.QtGui import *
import tables

class MainWindow(QMainWindow) :
     def __init__(self, parent = None,):
         QMainWindow.__init__(self, parent)
         self.mainWidget = QLabel('yep')
         self.setCentralWidget(self.mainWidget)

def startMain():
     app = QApplication([ ])
     w = MainWindow()
     w.show()
     app.exec_()

if __name__ =='__main__':
     startMain()

######


Does someone could help me ?

Thanks a lot for pyinstaller this is really a great great tool!!!

Samuel




On 19 mar, 22:39, Martin Zibricky<mzibr.pub...@gmail.com>  wrote:
Bogdan.Neacsa píše v Po 19. 03. 2012 v 07:19 -0700:

Now is this some kind of problem that will be fixed? Better has anyone
manage to package a project withpytables/cython dependencies and if
so, how?
I don't know about any cython project.
But could you please post any code example to be able to reproduce this
error?

--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Samuel Garcia
Lyon Neuroscience
CNRS - UMR5292 -  INSERM U1028 -  Universite Claude Bernard LYON 1
Equipe R et D
50, avenue Tony Garnier
69366 LYON Cedex 07
FRANCE
Tél : 04 37 28 74 24
Fax : 04 37 28 76 01
http://olfac.univ-lyon1.fr/unite/equipe-07/
http://neuralensemble.org/trac/OpenElectrophy
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

--
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To post to this group, send email to pyinstaller@googlegroups.com.
To unsubscribe from this group, send email to 
pyinstaller+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/pyinstaller?hl=en.

Reply via email to