<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Hi,<br>
so here I am with my pyqtdeployed application (thanks Phil for the
response of 2014/07/13), I run qmake and make successfully,<br>
but when I launch the generated executable it says:<br>
<br>
<font color="#330099"><tt>ImportError: No module named time</tt></font><br>
<br>
I boiled it down to a tiny python script which I then pyqtdeploy'd,
qmake'd and make'd:<br>
<font color="#330099"><tt><br>
</tt><tt>import time</tt><tt><br>
</tt><tt>print("it is %s" % time.time())<br>
<br>
</tt></font><font color="#330033">Same result, I did that with <i>datetime</i>
too, same result.<br>
<br>
I built python with <i>time</i> (and others like <i>datetime</i>,
etc.) as static modules (via the Modules/Setup file), <br>
if I open the used interpreter and do:</font><br>
<br>
<font color="#330099"><tt>import time</tt><tt><br>
</tt><tt>help(time)</tt></font><br>
<br>
it says:<br>
<tt><br>
</tt><font color="#330099"><tt>FILE</tt><tt><br>
</tt><tt> (built-in)</tt></font><br>
<br>
instead of indicating the .so file as it does normally. I think that
indicates they are static, right?<br>
also, in the standard library in lib-dynload <i>time.so,
datetime.so</i> are not present, another hint that they are built
statically, right?<br>
<br>
Any ideas?<br>
<br>
Andrea.<br>
</body>
</html>