Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've just installed play-2.0 and keep getting the following error when I try run any of the sample apps:

IOException: Cannot run program "javac": java.io.IOException: error=2, No such file or directory

I've tried on ubuntu 11.10 installing play via the typesafe stack and on crunchbang 10 by downloading the zip from the website. Both times I get the same error?

What am I missing?

share|improve this question
Which Java package do you have installed - Sun, OpenJDK, IcedTea, etc.? And do you have the JDK installed (required for javac) or just the runtime (JRE)? – Gary Chambers Mar 15 '12 at 18:54
$ java -version java version "1.6.0_26" Java(TM) SE Runtime Environment (build 1.6.0_26-b03) Java HotSpot(TM) Client VM (build 20.1-b02, mixed mode, sharing) – Martinffx Mar 15 '12 at 18:56
1  
for windows 64 bit OS users (specifically win 7) be sure to install the 32 bit jdk. I had previously only installed the 64 bit jdk and ran into the error above. Once the 32 bit JDK was installed the framework rendered the HTML page as expected – kmoormann Mar 23 at 3:58

1 Answer

up vote 4 down vote accepted

First of all, the primary requirement for Play 2.0 is JDK 6 or later, according to the framework's documentation.

Then, you also need to ensure that javac can be found within the current path. I got the same error as you before I added the directory containing javac to path.

share|improve this answer
1  
Thanks, it seems there was some thing wrong with my jdk install. The javac command wasn't in my path, even though I had java installed. Had to reinstall it, using: sudo apt-get install default-jdk and that sorted everything. – Martinffx Mar 15 '12 at 20:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.