根据这个博客帖子,我应该能够安装Ubuntu统一编辑器的.deb版本。我有推荐的系统要求。但是,当我试图使用.deb安装sudo dpkg -i mydebfile.deb文件时,会出现以下错误:
Selecting previously unselected package unity-editor.
(Reading database ... 175283 files and directories currently installed.)
Preparing to unpack unity-editor-5.3.4f1 20160503_amd64.deb ...
Unpacking unity-editor (5.3.4f1) ...
dpkg: dependency problems prevent configuration of unity-editor:
unity-editor depends on lib32gcc1 (>= 1:4.1.1); however:
Package lib32gcc1 is not installed.
unity-editor depends on lib32stdc++6 (>= 4.6); however:
Package lib32stdc++6 is not installed.
unity-editor depends on libc6-i386 (>= 2.15); however:
Package libc6-i386 is not installed.
unity-editor depends on libpq5; however:
Package libpq5 is not installed.
unity-editor depends on npm; however:
Package npm is not installed.
dpkg: error processing package unity-editor (--install):
dependency problems - leaving unconfigured
Processing triggers for gnome-menus (3.13.3-6ubuntu3) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5) ...
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160415-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.59ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.15-0ubuntu1) ...
Errors were encountered while processing:
unity-editor有人成功地在Ubuntu16.04上安装了Unity3d吗?如果可以的话请帮忙。
编辑:有人问我如何通过命令行安装.deb文件?这个问题是否解决了我的问题。答案是:不,它没有。这个问题的答案可能有助于学习如何使用sudo apt-get -f install修复破碎的依赖关系,但这并没有解决我的问题。我不得不一个接一个地安装每个丢失的软件包(见下面的注释)。所以,我认为来这里解决同样问题的人将无法知道,如果问题被标记为重复,他们必须手工安装软件包。
发布于 2016-05-18 20:54:32
dpkg -i命令不解析依赖项并将它们从apt存储库中提取出来。您需要使用Ubuntu应用程序来安装包,或者需要在终端中手动apt-get install列出的依赖项,以便安装它们并满足unity-editor.deb文件的依赖关系。
发布于 2016-09-18 04:13:47
使用gdebi!将此gdebi安装在Ubuntu软件上,并打开文件manaager,转到下载,并在下载时打开终端。然后跑:
1.gdebi [.deb file you downloaded.deb(full name)]和等待..。
y时,键入[y/n]。但是我发现了一个错误:如果您登录,它总是显示‘服务不可用,请稍后再试。’别再等了。它总是向我展示。
发布于 2018-10-10 15:52:15
这一页上的答案现在都有点过时了。统一不再提供.deb文件。我花了一分钟时间,但请看下面的帖子:
https://forum.unity.com/threads/unity-on-linux-release-notes-and-known-issues.350256/
然后导航到最后一页。单击最后一篇文章中的链接(按指示)并下载可执行文件。下载后,您将需要添加执行权限,要么通过GUI (右键单击,转到权限,然后检查“允许执行文件作为程序”),要么从命令行运行
chmod +x unity-setup-filename
现在您可以打开新的图形辅助安装程序!
https://askubuntu.com/questions/774401
复制相似问题