是什么 ? | : | a commandline tool that allows you to display GTK dialog boxes. |
开发语言 | : | C |
开发组织 | : | GNOME |
官方主页 | : | https://wiki.gnome.org/Projects/Zenity |
源码仓库 | : | https://gitlab.gnome.org/GNOME/zenity |
操作系统 | 包管理器 | 安装命令 |
---|---|---|
macOS | HomeBrew | brew install zenity |
GNU/Linux | HomeBrew | brew install zenity |
apt | sudo apt-get install -y zenity | |
CentOS | yum | sudo yum install -y zenity |
dnf | sudo dnf install -y zenity | |
openSUSE | zypper | sudo zypper install -y zenity |
Alpine Linux | apk | sudo apk add zenity |
pacman | sudo pacman -Syyu --noconfirm | |
Gentoo Linux | Portage | sudo emerge zenity |
step1、安装依赖
所有时 | Terminal + Shell + GNU CoreUtils |
下载时 | cURL |
解压时 | tar + xz |
配置时 | autotools ( autoconf、automake ) |
编译时 | gmake、 ( gcc + g++ ) / GCC | Clang / LLVM、gettext |
运行时 |
step2、使用curl命令下载Zenity
源码包 ()
curl -LO https://download.gnome.org/sources/zenity/3.32/zenity-3.32.0.tar.xz
step3、使用tar解压Zenity
源码包
tar vxf zenity-3.32.0.tar.xz
step4、进入zenity-3.32.0
目录,并查看它的内容
step5、配置、编译、安装
./configure && make && sudo make install