On Sun, Sep 16, 2001 at 05:11:10PM -0400, Antonio Rodriguez wrote:
| How do I put a jar in the path of a PythonInterpreter object?
$ java -help
Usage: java [-options] class [args...]
(to execute a class)
or java -jar [-options] jarfile [args...]
(to execute a jar file)
where options include:
-client to select the "client" VM
-server to select the "server" VM
-classic to select the "classic" VM
If present, the option to select the VM must be first.
The default VM is -client.
-cp -classpath <directories and zip/jar files separated by :>
set search path for application classes and resources
-D<name>=<value>
set a system property
-verbose[:class|gc|jni]
enable verbose output
-version print product version and exit
-showversion print product version and continue
-? -help print this help message
-X print help on non-standard options
$
The use -classpath option to the JVM you run jython with.
HTH,
-D
|