How to install JavaFx in Ubuntu 12.04?
- by Ant's
I download JavaFx from here. I placed it in my home directory(anto) under the name javafx. Then I did something like this :
vi ~/.bashrc
and added the following lines:
javaFx_home=/anto/javafx/rt/lib/jfxrt.jar
export PATH=$PATH:$javaFx_home
But after providing the classpath, I tried running :
groovy MyProgram
(which depends on the JavaFx classpath).
But that throws me an error. Where I went wrong?