Tag: 依赖

试图安装libgraph

我正在尝试在Ubuntu 17.04中安装libgraph库。 ./configure文件成功但是当我说make会出错: Makefile:934: warning: overriding recipe for target ‘libgraph.pc’ Makefile:409: warning: ignoring old recipe for target ‘libgraph.pc’ make all-recursive make[1]: Entering directory ‘/home/maverick/libgraph-1.0.2’ Makefile:934: warning: overriding recipe for target ‘libgraph.pc’ Makefile:409: warning: ignoring old recipe for target ‘libgraph.pc’ Making all in doc make[2]: Entering directory ‘/home/maverick/libgraph-1.0.2/doc’ Making all in man make[3]: Entering directory ‘/home/maverick/libgraph-1.0.2/doc/man’ […]

什么是sudo apt-get -f install?

apt-get -f install的用法是什么? 当我运行sudo apt-get update我在最后遇到了一些错误它说试试apt-get -f install 。 这个命令是什么? 我的错误的最后一部分是: . . . going to be installed E: Unmet dependencies. Try ‘apt-get -f install’ with no packages (or specify a solution).

破坏apt,由于未满足的依赖性而无法更新libglvnd(Nvidia)

我最近没有安装任何新软件包或添加任何PPA,只是运行apt更新。 运行’apt upgrade’之后 Reading package lists… Done Building dependency tree Reading state information… Done You might want to run ‘apt –fix-broken install’ to correct these. The following packages have unmet dependencies: libglvnd-dev : Depends: libglvnd0 (= 1.0.0-2ubuntu2.1) but 1.0.0-2ubuntu2.2 is installed Depends: libglvnd-core-dev (= 1.0.0-2ubuntu2.1) but 1.0.0-2ubuntu2.2 is installed Depends: libegl1 (= 1.0.0-2ubuntu2.1) but 1.0.0-2ubuntu2.2 […]

在Ubuntu 12.04 LTS上安装gcc

当我尝试使用apt-get install gcc install gcc在Ubuntu 12.04 LTS服务器上apt-get install gcc ,出现以下错误: The following packages have unmet dependencies: gcc : Depends: cpp (>= 4:4.6.1-2ubuntu5) but it is not going to be installed Depends: gcc-4.6 (>= 4.6.1-1) but it is not going to be installed Recommends: libc6-dev but it is not going to be installed or libc-dev 当我深入研究(即尝试apt-get […]

当repo有更新版本时安装特定版本?

让我们有一个metapackage,它取决于以下包 Depends: A (=2), B (=2), C (=2) 注意’=’ – 我想安装这些特定版本,而不是最新版本。 另外: B取决于A (> = 1) C取决于B (> = 1)和A (> = 1) 如果存储库中A,B,C的最新版本是2,那么这是有效的。 由于我已将版本3的A和版本3的B放入repo sudo apt-get install中,因此my-meta-package拒绝使用以下信息完成: The following packages have unmet dependencies: my-meta-package: Depends: B (= 2) but 3 is to be installed Depends: A (= 2) but 3 is to be installed […]

如何安装ncurses头文件?

我试图配置内核,我得到以下错误。 有人可以告诉我应该怎么做吗? root@nitr-desktop:/usr/src/linux# make menuconfig *** Unable to find the ncurses libraries or the *** required header files. *** ‘make menuconfig’ requires the ncurses libraries. *** *** Install ncurses (ncurses-devel) and try again. *** make[1]: *** [scripts/kconfig/dochecklxdialog] Error 1 make: *** [menuconfig] Error 2

如何创建具有依赖关系的.deb文件?

我有一个用LÖVE框架制作的游戏,我想把它打包成一个.deb文件,这样它就可以很容易地被其他人安装,并且可以通过Unity破折号轻松找到。 我也有LÖVE框架love_0.7.2.deb ,我想以某种方式在deb文件中。 我有的文件: game_icon.png game .desktop the_game.love love_0.7.2.deb 有人可以向我解释如何做到这一点?

Ubuntu修复了依赖性问题

我有依赖问题,每当我进行apt-get install ,我收到此错误消息: http://pastebin.com/dFnAgyK1 我已经尝试过: apt-get clean , update , upgrade , install -f dpkg –configure -a 我现在应该怎么做?

如何删除deb而不删除其依赖项

我想安装最新版本的boto ,我通过python setup.py install 然而,当我尝试删除旧版本时,以下软件包也会被删除: apt-get remove python-boto Reading package lists… Done Building dependency tree Reading state information… Done The following packages will be REMOVED: cloud-init cloud-utils euca2ools python-boto 如何告诉程序包管理器删除boto,并将它标记为外部安装(或类似的东西),以便apt不会尝试修复丢失的依赖项? 谢谢, 格言。

如何删除已卸载的软件包的依赖项?

我想安装一个软件包(DigiKam),但它有很多依赖项。 如果我决定不再需要这个软件并卸载它,那么现在的unnessary依赖关系会被删除吗? 如果没有,我该如何手动完成?