Scene builder does not open in ubuntu 17.04?

When I open scene builder using eclipse. it is not opening why I do not know. I got the following error. please give me a suggestion.

I showed installed path of scene builder in eclipse. window->preferences->JavaFX: /home/decoders/Downloads/JavaFXSceneBuilder2.0

Error:

failed to launch SceneBuilder. The error message was: can not run program "/home/decoders/Downloads/JavaFXSceneBuilder2.0": error=13, permission denied.

1 Answer

Permisssion denied most likely means, you have to allow the file to be executed.

Open a terminal and use

cd /home/decoders/Downloads/

to change to the Downloads directory. Now type

chmod u+x JavaFXSceneBuilder2.0

to allow the execution of that file.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like