E:软件包“ python-software-properties”没有安装候选


37
sudo apt-get安装python-software-properties
正在阅读包装清单...完成
建立依存关系树...完成
软件包python-software-properties不可用,但由另一个软件包引用。
这可能意味着包裹丢失,已被废弃或
仅可从其他来源获得
但是,以下软件包将其替换:

 常用软件属性

E:软件包“ python-software-properties”没有安装候选

我该如何解决此错误?

Answers:


42

software-properties-common通过运行安装,

sudo apt-get install software-properties-common

software-properties-common包是的备用包python-software-properties

对于<= 12.04

sudo apt-get install python-software-properties

对于> = 12.10

sudo apt-get install software-properties-common

2
可以了 但仍然sudo apt-get install python-software-properties不起作用。
user238511

1
python-software-properties软件包仅适用于12.04以下的版本。
Avinash Raj 2014年

@AvinashRaj,它将取代什么?
卡尔·莫里森

4
如果您发现此尝试安装火炬的时候,你需要作出评论涉及两条线路python-software-propertiestorch/install-deps安装后software-properties-common
cag51 '18

在Ubuntu 16.04,dpkg --listfiles python-properties-commondpkg --listfiles software-properties-common表示python-properties-common将文件添加只Python版本2.7。而且,这software-properties-common提供了文件的Python 3
升--marc升

8

我在Ubuntu 18.04上遇到了这个问题

最后尝试了几种方法来解决我的问题

sudo apt --fix-broken install python-pycurl python-apt

3

我刚开始使用火炬,却遇到了错误。
这是我如何解决的。

  1. 主页->火炬->打开 install-deps

    找到关键字python-software-properties并将其替换为software-python-common,然后保存并退出。

  2. 使用以下命令安装software-python-common

    sudo apt-get install software-properties-common 
    
  3. 运行命令

    cd ~/torch; bash install-deps;
    

大功告成!


1
您在以下地方software-python-commonsoftware-properties-common
打错

请使用software-properties-common而不是software-python-common像魅力一样起作用!
森迪普•

0

这是我的第一篇帖子,我只用了Linux几周,所以请对我轻松一点=]。

如果ymin的方法遇到错误

root @ my32bitbox:〜#sudo apt-get安装python-software-properties git-core。读取软件包列表...完成构建依赖关系树
读取状态信息...完成软件包python-software-properties不可用,但由另一个软件包引用。这可能意味着该软件包丢失,已废弃或只能从其他来源获得。但是,以下软件包将其替换:
software-properties-common

...这条经过微调的行对我有用(请注意:如果有什么不同...我需要为我自己的酒构建安装32位依赖项)

> sudo apt-get install software-properties-common git-core

0

我也有同样的错误。打开终端并输入以下命令

sudo apt-get install -y software-properties-common

然后,这个

sudo apt-get install -y python-software-properties

我希望这会起作用。它在我的系统中有效。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.