From: Robert W. B. <rb...@di...> - 2001-08-09 04:04:42
|
Hello Peter, On Wed, 8 Aug 2001, Peter Brinkmann wrote: > Hi! > I've got another problem with some code that works fine when interpreted > with jython but breaks down when compiled with jythonc. <snip> > > However, when I compile it with > > jythonc --core --jar test.jar main.py <snip> > > java.lang.NoClassDefFoundError: java.lang.NoClassDefFoundError: org/python/compiler/ProxyMaker Use --all to get the compiler and parser packages. --core is everything but these two. try: jythonc --all --jar test.jar main.py |