安裝 Plotmtv

安裝 Plotmtv

我想安裝plotmtv。由於這個原因,我簡單地使用了命令

sudo apt-get install plotmtv

但我收到一條錯誤訊息,指出該套件丟失、不可用或位於另一個來源中。

我能做些什麼?

謝謝

答案1

plotmtv自 Intrepid 以來就不再存在於儲存庫中。但你可以使用 deb 套件。我能夠在 Vivid 中成功安裝它。

  • 64位

    cd;
    wget https://launchpad.net/~hkroeger/+archive/ubuntu/engineeringoss/+files/plotmtv_1.4.1-R10%7E8527892_amd64.deb
    sudo dpkg -i plotmtv_1.4.1-R10\~8527892_amd64.deb
    
  • 32位

    cd;
    wget https://launchpad.net/~hkroeger/+archive/ubuntu/engineeringoss/+files/plotmtv_1.4.1-R10%7E8527892_i386.deb
    sudo dpkg -i plotmtv_1.4.1-R10\~8527892_i386.deb
    

檢查安裝狀況

apt-cache policy plotmtv

plotmtv:
      Installed: 1.4.1-R10~8527892
      Candidate: 1.4.1-R10~8527892
      Version table:
     *** 1.4.1-R10~8527892 0
            100 /var/lib/dpkg/status

相關內容