|
From: storck <dir...@cm...> - 2001-07-09 09:31:30
|
Hi,
wow, greate.
What must I do that the PythonInterpreter finds several py-libraries?? If I
excecute the following:
try {
PythonInterpreter pInt = new PythonInterpreter();
pInt.execfile("D:\\Daten\\Projekte\\PythonTest\\XML_RPC_Client.py");
pInt = null;
} catch (Exception e) {
e.printStackTrace();
}
I get that error-message:
Dispatching:
Traceback (innermost last):
File "D:\Daten\Projekte\PythonTest\XML_RPC_Client.py", line 1, in ?
ImportError: no module named xmlrpclib
What must I do that the interpreter can find that xmlrpclib. Where is the
interpreter searching for it?
THANK you !!
P.s. I use Visuale Age 4 Java
|