Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Problem with Update-alternatives for java

I try to setup nativescript-vue on linux by following steps on nativescript website. when I use this command

sudo update-alternatives --config java

but have an error

update-alternatives: error: no alternatives for java

Please tell me how to fix this problem......

like image 656
setha va Avatar asked Feb 04 '26 11:02

setha va


1 Answers

Try

sudo update-alternatives --install /usr/bin/java java  path_to_java 1

In my case the path was /usr/lib/jvm/java-8-openjdk-amd64

like image 113
Max Robbertze Avatar answered Feb 06 '26 14:02

Max Robbertze