运行和安装软件中心需要什么?

运行和安装软件中心需要什么?

我的控制台上有一个名为 linaro 的完全精简版 lubuntu(lxde 桌面、H8 arm 处理器、cubietruckplus/cubieboard5),由于硬件是定制的,我无法按照我习惯的方式安装 ubuntu。软件中心需要哪些库?我已经安装了 synaptic 和 xapian,但软件中心告诉我我的位置有问题?我尝试按照 mint 的安装进行操作,并安装成功,但不起作用。

答案1

也许您可以尝试查找软件中心的所有依赖项。以下是查找所有依赖项的方法:

apt-cache depends software-center

如果我在我的系统(16.04)上执行此操作,我会看到以下输出:

software-center
  Depends: <python:any>
    python:i386
    python
  Depends: iso-codes
  Depends: app-install-data
  Depends: aptdaemon
  Depends: software-center-aptdaemon-plugins
  Depends: humanity-icon-theme
  Depends: gir1.2-glib-2.0
  Depends: gir1.2-gtk-3.0
  Depends: gir1.2-gmenu-3.0
  Depends: gir1.2-webkit2-4.0
  Depends: gvfs-backends
    gvfs-backends:i386
  Depends: python-gi
  Depends: python-gi-cairo
  Depends: python-xapian
    python-xapian1.3
  Depends: python-apt
  Depends: python-aptdaemon
  Depends: python-aptdaemon.gtk3widgets
  Depends: python-dbus
  Depends: python-defer
  Depends: python-lxml
  Depends: policykit-1
    policykit-1:i386
 |Depends: policykit-1-gnome
    lxpolkit
    mate-polkit
  Depends: <policykit-1-kde>
  Depends: python-xdg
  Depends: ubuntu-sso-client
  Depends: python-piston-mini-client
  Depends: oneconf
 |Depends: python-oneconf
  Depends: oneconf
  Depends: python-debtagshw
  Conflicts: <gnome-app-install>
  Recommends: lsb-release
  Recommends: apt-xapian-index
  Recommends: update-notifier
    gnome-packagekit
  Recommends: software-properties-gtk
  Recommends: sessioninstaller
  Recommends: xz-utils
    xz-utils:i386
  Replaces: <gnome-app-install>
    software-center

以下是 lubuntu 的功能:

> apt-cache depends lubuntu-software-center

lubuntu-software-center
  Depends: python
  Depends: python
  Depends: python-apt
 |Depends: python-gi
  Depends: python-gobject
  Depends: gir1.2-gtk-3.0
  Depends: gir1.2-notify-0.7
  Depends: python-pysqlite2
  Depends: python-aptdaemon
  Depends: python-aptdaemon.gtk3widgets
  Depends: python-xdg
  Depends: app-install-data

我认为您需要安装那里列出的所有软件包才能使软件中心正常工作。

[编辑以添加 lubuntu 版本的软件中心的输出。]

答案2

显示 Ubuntu 软件中心的依赖项 (软件中心)打开终端并输入:

apt-cache showpkg software-center  

显示 Lubuntu 软件中心的依赖项(lubuntu 软件中心):

apt-cache showpkg lubuntu-software-center  

相关内容