解决Ubuntu提示apt-get: Package has no installation candidate

发布时间:2020-12-24编辑:脚本学堂
在安装软件时,提示:Package has no installation candidate,这里分享下解决方法,有遇到类似问题的朋友参考下。

在ubuntu中安装软件时,提示: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
# apt-get upgrade
# apt-get install <packagename>

又可以正常使用apt-get了。