Tag: 依赖

无法在ubuntu 17.04上安装Google Chrome,因为“未安装软件包libgcc1:i386”

我试图安装谷歌浏览器,但安装时收到以下消息。 我写的时候 sudo dpkg -i ~/Downloads/google-chrome-stable_current_amd64.deb 我收到以下消息: Selecting previously unselected package google-chrome-stable. (Reading database … 237226 files and directories currently installed.) Preparing to unpack google-chrome-stable_current_amd64.deb … Unpacking google-chrome-stable (59.0.3071.86-1) … dpkg: dependency problems prevent configuration of google-chrome-stable: google-chrome-stable depends on libappindicator1; however: Package libappindicator1 is not installed. dpkg: error processing package google-chrome-stable (–install): dependency problems […]

由于依赖性,无法安装软件包

当我尝试安装包时 – sudo apt-get -f install golang-go Reading package lists… Done Building dependency tree Reading state information… Done You might want to run ‘apt-get -f install’ to correct these: The following packages have unmet dependencies: chromium-browser : Depends: libnspr4 (>= 2:4.9-2~) but it is not going to be installed or libnspr4-0d (>= 1.8.0.10) but it […]

为python2和python3构建matplotlib依赖项

我希望在我的计算机中有各种虚拟环境,其中一些运行python 2.7,另一些运行python3,其中一些必须具有完整的matplotlib支持,这是在创建虚拟环境时使用–system-syte-packages实现的(见matplotlib常见问题 )。 因此,我需要为两个python版本生成matplotlib的依赖项。 我开始时: sudo apt-get build-dep python-matplotlib 哪个安装正确,然后我试图运行: sudo apt-get build-dep python3-matplotlib 哪个什么都没做,它只打印了以下消息: Reading package lists… Done Picking ‘matplotlib’ as source package instead of ‘python3-matplotlib’ Reading package lists… Done Building dependency tree Reading state information… Done 0 to upgrade, 0 to newly install, 0 to remove and 6 not to upgrade. 怎么解决这个问题? 欢迎使用pip或apt-get相关解决方案。 […]

在Ubuntu 14.04 LTS上安装qt4

一直试图安装Gnuradio几天,并继续遇到问题,qt4无法正常构建/安装。 似乎依赖于一个名为“统一控制中心”的东西,该东西声称依赖于两个图书馆,这两个图书馆都声称是最新的。 如果我尝试安装qt4,这就是我得到的。 如果我尝试从软件中心FWIW安装任何qt4应用程序,请获取完全相同的未满足的依赖项。 ftoewe@ftoewe-Inspiron:~$ sudo apt-get install qt4-dev-tools libqt4-dev libqt4-core libqt4-gui Reading package lists… Done Building dependency tree Reading state information… Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been […]

对于未满足的依赖项,安装kubuntu-desktop失败

我正在使用Kubuntu 14.04。 我丢失了我的桌面并且unable to launch “/usr/bin/startkde” X sesssion – “/usr/bin/startkde” not found; falling back to default session错误unable to launch “/usr/bin/startkde” X sesssion – “/usr/bin/startkde” not found; falling back to default session unable to launch “/usr/bin/startkde” X sesssion – “/usr/bin/startkde” not found; falling back to default session 。 我在post中发现了一个可能的修复,我按照指令使用Ctrl+Alt+F1进入终端: sudo apt-get update sudo apt-get install -f […]

我如何安装TweetDeck?

请在此处查看问题:===============> https://superuser.com/questions/218868/tweetdeck-adobe-air-on-ubuntu-10-10 得到问题: sudo apt-get install Reading package lists… Done Building dependency tree Reading state information… Done You might want to run ‘apt-get -f install’ to correct these. The following packages have unmet dependencies: tweetdeckfast.fff259dc0ce2657847bbb4aff0e62062efc56543.1 : PreDepends: adobeair (>= 1.5.3.0) but it is not installable E: Unmet dependencies. Try using -f.

为什么Flash Player需要“ttf-mscorefonts”才能使flash播放器工作?

有人能告诉我为什么Flash Player需要ttf-mscorefonts才能工作?

安装具有未满足依赖关系的包

我正在尝试安装一些应用程序,但其中一些无法安装。 我尝试的三个应用程序是Vim,Emacs和GNOME-Do。 我使用Ubuntu 10.10作为VirtualBox中的客户操作系统安装。 安装的内核版本是2.6.35-26。 我得到的错误是: alvinsim@ubuntu:/etc/apt$ sudo apt-get install emacs Reading package lists… Done Building dependency tree Reading state information… Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created […]

Click / Snappy如何解决依赖性问题?

点击和活泼有点混乱。 首先,我知道由于app-armor,某些软件包不允许共享。 例如,如果我编写一个执行python脚本的Qt应用程序,app armor将阻止我在我自己的系统上使用已安装的python解释器。 然而,我的程序依赖于python解释器。 Click / Snappy如何解决这个问题和其他依赖性问题?

如何在deb包列表中找到顶级依赖项?

假设我有一个包列表: foo libfoo bar baz quux 假设foo需要libfoo和bar ,而baz需要quux 。 我想要一种方法来放入该列表,并获取此列表: foo baz 即 – 我希望安装最小的软件包列表 – 在依赖项解析之后 – 导致安装整个软件包列表。