Jython and SciTE

Neil Hodgson nhodgson at bigpond.net.au
Wed Jan 21 14:57:45 EST 2004


rt lange:

> I'm trying to get SciTE to run and compile my jython scripts.
> This is what I have in my python.properties file:
>
> command.name.1.*.py=Go Jython
> command.1.*.py=jython $(FileNameExt)
> command.1.subsystem.*.py=1
> command.name.2.*.py=Jython -> jar
> command.2.*.py=jythonc --core --jar $(FileName).jar $(FileNameExt)
> command.2.subsystem.*.py=1
>
> I keep getting as output:
>
> >jython DiceRoll.py
> >The system cannot find the file specified.

   Depending on the OS and the type of command (batch, exe, python script)
"jython" is you may need to execute through the command interpreter which is
cmd on NT:

command.1.*.py=cmd /c jython $(FileNameExt)

   Neil





More information about the Python-list mailing list