1


I created native installers for my air application successfully under MacOS and Windows.
With Ubuntu 10 I am able to create a .deb package, but when I launch it opens the Ubuntu software center showing error:

Dependency is not satisfiable: adobeair (>= 2.5.0.0)

I thought native installer should be able to download the proper adobe air version if available (2.5.1 seems available as deb package). If I install air for linux 2.5.1 from adobe website my application launches fine.

Did anyone experience the same issue?

Thanks in advance for any help
Paolo

4

3 回答 3

1

不幸的是,“不再支持 Adob​​e AIR for Linux”已经晚了很多年。按照adobe page所说的。使用“AIR 存档”可以获得不受支持的版本,2.6.0 版本是可用的最新版本。如果您需要安装需要更新版本的程序,您可以使用 Windows 来宾访问 Virtual box。

对于 2.6.0 版本,Ubuntu 16.10 的推荐步骤是:

适用于 32 位机器

wget -O adobe-air_i386.deb http://drive.noobslab.com/data/apps/AdobeAir/adobeair_2.6.0.2_i386.deb
sudo dpkg -i adobe-air_i386.deb
sudo apt-get install -f && rm adobe-air_i386.deb

适用于 64 位机器

wget -O adobe-air_amd64.deb http://drive.noobslab.com/data/apps/AdobeAir/adobeair_2.6.0.2_amd64.deb
sudo dpkg -i adobe-air_amd64.deb
sudo apt-get install -f && rm adobe-air_amd64.deb

Ubuntu 16.04/14.04/12.04/Linux Mint 18/17/13 的推荐步骤(均从此处提取):

wget -O adobe-air.sh http://drive.noobslab.com/data/apps/AdobeAir/adobe-air.sh
chmod +x adobe-air.sh;sudo ./adobe-air.sh
于 2017-03-30T18:02:32.723 回答
0

尝试安装 itdpkg -i --force-architecture adobeair.deb

于 2011-02-11T18:58:51.650 回答
0

Ubuntu 存储库中提供了哪个版本的 adobeair 软件包?

.deb 只是一个存档,依赖项必须可从系统配置使用的存储库中获得。它无法通过从您知道的某个特定位置下载它来解决依赖关系,但系统未配置为使用。

如果所需版本的软件包在 Ubuntu 存储库中不可用,那么您唯一的选择是重新配置系统以使用具有所需依赖项的附加存储库,然后再尝试安装软件包,或者在尝试安装软件包之前下载并手动安装依赖项你尝试安装你的包。

于 2011-02-11T21:05:00.770 回答