如何在 Pardus 上安装 rastertoezpl?

如何在 Pardus 上安装 rastertoezpl?

我买了一台条形码打印机 Godex。我必须安装它的驱动程序。我是在Ubuntu上做的。但是,我有一些问题。例如:在 README 文件中:

$ sudo aptitude install libcupsimage2-dev

但贝壳说我

sudo:aptitude: command not found

此外,当我写sudo apt-get install aptitude it

sudo:apt-get: command not found

然后,当我写./configureshell 时,会出现以下内容。

./configure

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... no
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.

我该如何修复它?我怎样才能安装这个包?现在已经感谢您的帮助了。

答案1

每个 Linux 发行版(或发行版系列)都有自己的包管理系统。 Ubuntu 使用.deb软件包并拥有包括 Aptitude 在内的 APT 工具系列。 Pardus 有自己的包管理器,名为皮硅

你眼前的问题是“没有可接受的 C 编译器”。您需要安装 C 编译器,可能还需要安装其他开发包。看《软件编译与打包》在 Pardus 维基百科中;首先安装基本的开发工具(相当于Ubuntu的build-essentials):

sudo pisi install -c system.devel

相关内容