How can I load jar files for debugging in Jython?
Just add the JAR file to sys.path.
import sys sys.path.append(r'C:\lib\guava-12.jar') from com.google.common.io import *
add them to the classpath!
the answer says everything -)