安装 Acire 和 Python Snippets

安装 Acire 和 Python Snippets

我正在尝试在 Ubuntu 11.04(64 位)中安装 Acire 和 Python Snippets。

我已成功安装 Acire,但无法安装 python-snippets 包。两个 PPA 都已添加到我的源列表中,但当我运行 时sudo apt-get update,出现错误:

W: Failed to fetch http://ppa.launchpad.net/python-snippets-drivers/python-snippets-daily/ubuntu/dists/natty/main/binary-amd64/Packages  404  Not Found

我应该怎么做才能安装 python-snippets?

答案1

如果你谈论的是这个 PPA -https://launchpad.net/~python-snippets-drivers/+archive/python-snippets-daily- 仅有 Lucid 和 Maverick 的软件包。尚无 Natty 的软件包。

建议联系软件包所有者(Jorge O Castro!)或尝试编辑软件源并将“natty”更改为“maverick”,如下所示非盟答案

答案2

还有另一个 PPA,其中包含专为 Natty 构建的 python-snippets 包。我能找到的唯一适合 Natty 的地方是 Matthieu Baerts 的 PPA。您可以使用以下命令添加源并安装 python-snippets:

sudo add-apt-repository ppa:matttbe/ppa
sudo apt-get update
sudo apt-get install python-snippets

此后 Acire 确实依赖于 Desktopcouch 包。您可以从软件中心获取 Desktopcouch 包,或者使用以下命令:

sudo apt-get install desktopcouch

现在您应该拥有所需的所有软件包。您只需输入“acire”即可从命令行运行 Acire。它也应该出现在您的菜单上的编程类别中。如果您使用的是 Unity,您应该能够使用主镜头查找并运行 Acire。

相关内容