I am going through the dojango setup process right now and I am having
some trouble doing a dojo build. When i run the command "./manage.py
dojobuild" from within my new project directory, I get the following
error:
68: DeprecationWarning?: os.popen3 is deprecated. Use the subprocess
module.
stdin, stdout, stderr = os.popen3(settings.DOJO_BUILD_JAVA_EXEC)
Error: Please install java. You need it for building dojo.
The DOJO_BUILD_JAVA_EXEC default of "java" should work for my system,
but just to be sure, I tried setting it to the full java path for my
machine. Both gave me the same error.
So what else could be going wrong here?
Thanks
you have to define the path to your java executable different within
your settings.py:
DOJANGO_DOJO_BUILD_JAVA_EXEC = "path/to/java/exec"
It is just possible to overwrite settings with prepending "DOJANGO_"
before.
And I'm just seeing that this setting is not documented. Will add that
then.
Thanks for the input.
Greetings, Tobias
--
You received this message because you are subscribed to the Google Groups "dojango-users" group.
To post to this group, send email to dojang...@googlegroups.com.
To unsubscribe from this group, send email to dojango-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/dojango-users?hl=en.