无法在 ubuntu 18.04 中安装 netbeans

无法在 ubuntu 18.04 中安装 netbeans

我遇到了这个错误:

Err:27 http://ppa.launchpad.net/midori/ppa/ubuntu bionic Release               
  404  Not Found [IP: 91.189.95.83 80]

答案1

如果你在安装 netbeans 时遇到问题,为什么不尝试这个方法:

  1. 从其官方网站下载此 bash 文件

    wget -c http://download.netbeans.org/netbeans/8.2/final/bundles/netbeans-8.2-linux.sh
    
  2. 授予下载文件的可执行权限

    chmod +x netbeans-8.2-linux.sh 
    
  3. 现在执行此文件,它将安装 netbeans

    sudo ./netbeans-8.2-linux.sh
    

祝您编码愉快!

相关内容