I got the following error in Eclipse on my Ubuntu 12.04:
1 | Failed to create web browser. The MOZILLA_FIVE_HOME environment variable must be configured to point to your web browser install location. For example: |
A solution from here:
Create a bash file with the content below and run it to start Eclipse:
1 | export MOZILLA_FIVE_HOME=”/usr/lib/mozilla/” |
Added@20120628:
This problem seems still existing. Here is another solution from [here][i_url]. The core idea is to add the following line at the end of the “eclipse.ini” file:
1 | -Dorg.eclipse.swt.browser.XULRunnerPath=/usr/lib/xulrunner |