I've been trying to compile Jython .py
files into Java .class
files, yet whenever and wherever I try to run "jythonc
". Here's how my environment variables are set:
JYTHON_HOME
is set in where jython.jar is (the install directory)
JYTHONPATH
is the install directory's bin folder
I'm using Jython 2.7.0 and Python 3.4.3.
Asked
Active
Viewed 844 times
0

Hlaaftana
- 58
- 1
- 10
-
jythonc has been retired. See http://stackoverflow.com/questions/2763129/jythonc-missing – mzjn Sep 06 '15 at 16:41
1 Answers
0
That error indicates that jythonc
is not on the PATH
. You will need to set the PATH
environment variable so that it contains the Jython bin
folder.

Luke Woodward
- 63,336
- 16
- 89
- 104