Ich versuche, eine Java-Klasse aus einer externen Bibliothek in Jyhon zu importieren, und es funktioniert nicht. Ein Beispiel
package run;
import import.Imported;
Class Run()
{
public static void main(String[] args){
pi = new PythonInterpreter(null);
pi.execfile('script.py');
}
}
//this is an external libary
package import;
Class Imported()
{
//some stuff;
}
//py script
from import import Imported //this line throws an error Module not found
#do some stuff
Das Seltsamste ist, dass es läuft, wenn es in Eclipse kompiliert wird, aber nicht von der Kommandozeile. Jede Hilfe?