今天在安裝軟件的時候出現了Package has no installation candidate的問題,如:
# apt-get install <packagename>
Reading package lists... Done
Building dependency tree... Done
Package aptitude is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package <packagename> has no installation candidate
解決方法如下:
# apt-get update
【更新同步安裝列表。在這一步之前可能還需要添加新的源,比如
vim /etc/apt/sources.list 我添加了2個
deb http://mirrors.163.com/ubuntu/ hardy main universe
deb http://tw.archive.ubuntu.com/ubuntu/ hardy main universe
】
# apt-get upgrade【升級所有可升級的已安裝包?我沒做這一步,也可以】
# apt-get install <packagename>
這樣就可以正常使用apt-get了~
本文轉自:http://hi.baidu.com/lozard/item/03b854f5a8630015e2e3bd0a
posted on 2013-04-02 13:41
王海光 閱讀(10016)
評論(0) 編輯 收藏 引用 所屬分類:
Linux