Ubuntu – Problem with NetBeans 7.0.1 on Ubuntu 14.04

netbeans

I was working in win7, and I just got sick of windows. So I installed 14.04 LTS and NetBeans today. Opened it and start new project, several times. Won't create new project, won't do nothing.

At one point, the app had to be killed. So, I'm totally new to Ubuntu and Linux and need help. I couldn't find answer that could save my problem.

Best Answer

Looks like you're hitting bug 1274469; the libnb-javaparser-java package is newer than the netbeans installation.

The fix is to manually downgrade your version of libnb-javaparser-java, to match the version of netbeans that's installed. You can do this with:

wget http://archive.ubuntu.com/ubuntu/pool/universe/libn/libnb-javaparser-java/libnb-javaparser-java_7.0.1-1_all.deb
sudo dpkg -i libnb-javaparser-java_7.0.1-1_all.deb

then restart netbeans.

Related Question