1. 程式人生 > >解決安裝wine時的依賴問題

解決安裝wine時的依賴問題

因為在Linux上沒有比source insight更強大的程式碼工具了,故在ubuntu上必須繼續使用source insight。

前段時間安裝過wine,什麼問題也沒有,安裝命令

sudo apt-get install wine

這段時間搞openni 和openni2的問題,安裝解除安裝了一大堆亂七八糟的軟體。導致source insight無法啟動,經過定位發現是wine軟體缺少依賴了,出現下面這種情況

wine : Depends: wine1.6 but it is not going to be installed

然後就解決依賴,先執行
sudo apt-get install ppa-purge
sudo add-apt-repository ppa:ubuntu-wine/ppa && sudo apt-get update
然後安裝wine1.6,
sudo apt-get install wine1.6-i386=1:1.6.2-0ubuntu4
發現少libgphoto2,然後安裝
sudo apt-get install libgphoto2-6:i386 libgphoto2-port10:i386
又發現少libusb-1.0-0:i386,最後執行命令
sudo apt-get install libusb-1.0-0:i386
成功了,再一步步返回去,wine就安裝成功了,最終source insight又可以正常使用了。