如何安装白蚁

如何安装白蚁

我在 UbuntuGnome 上使用 openbox...希望这有帮助。

因此我查看了此处的文档:

https://wiki.archlinux.org/index.php/Termite

我不知道如何安装它。我是新手,只想得到一个简单的解释,或者至少能得到正确的指导。

我也遵循了这里的说明: https://github.com/thestinger/termite

做了以下事情:

git clone --recursive https://github.com/thestinger/termite.git
cd termite && make

然后得到这个:

询问@ubuntu:~/termite$ make
在 pkg-config 搜索路径中未找到软件包 gtk+-3.0。
也许你应该添加包含“gtk+-3.0.pc”的目录
添加到 PKG_CONFIG_PATH 环境变量
未找到软件包‘gtk+-3.0’
在 pkg-config 搜索路径中未找到软件包 vte-2.91。
也许你应该添加包含“vte-2.91.pc”的目录
添加到 PKG_CONFIG_PATH 环境变量
未找到包“vte-2.91”
在 pkg-config 搜索路径中未找到软件包 gtk+-3.0。
也许你应该添加包含“gtk+-3.0.pc”的目录
添加到 PKG_CONFIG_PATH 环境变量
未找到软件包‘gtk+-3.0’
在 pkg-config 搜索路径中未找到软件包 vte-2.91。
也许你应该添加包含“vte-2.91.pc”的目录
添加到 PKG_CONFIG_PATH 环境变量
未找到包“vte-2.91”
g++ -std=c++11 -O3 -Wall -Wextra -pedantic -Winit-self -Wshadow -Wformat=2 -Wmissing-declarations -Wstrict-overflow=5 -Wcast-align -Wconversion -Wunused-macros -Wwrite-strings -DNDEBUG -D_POSIX_C_SOURCE=200809L -DTERMITE_VERSION=\"v11\" -Wno-missing-field-initializers -s -Wl,--as-needed termite.cc -o termite
termite.cc:31:21:致命错误:gtk/gtk.h:没有此文件或目录
编译终止。
Makefile:36:目标“termite”的配方失败
make: *** [termite] 错误 1

答案1

超过这里是一个安装脚本,它很好地解释了所有依赖关系和内容,我只需为您复制它即​​可;)

安装依赖项

sudo apt install -y g++ libgtk-3-dev gtk-doc-tools gnutls-bin \
    valac intltool libpcre2-dev libglib3.0-cil-dev libgnutls28-dev \
    libgirepository1.0-dev libxml2-utils gperf build-essential

获取并安装 vte-ng

git clone https://github.com/thestinger/vte-ng.git
echo export LIBRARY_PATH="/usr/include/gtk-3.0:$LIBRARY_PATH"
cd vte-ng && ./autogen.sh && make && sudo make install
cd ..

获取并安装白蚁,并设置

git clone --recursive https://github.com/thestinger/termite.git
cd termite && make && sudo make install
sudo ldconfig
sudo mkdir -p /lib/terminfo/x
sudo ln -s /usr/local/share/terminfo/x/xterm-termite /lib/terminfo/x/xterm-termite

瞧,就是这个了....

答案2

我认为最简单的安装方法如下:

cd /tmp
wget https://raw.githubusercontent.com/Corwind/termite-install/master/termite-install.sh
chmod +x ./termite-install.sh
./termite-install.sh

现在更新你的默认终端仿真器:

sudo update-alternatives --config x-terminal-emulator

祝你有美好的一天!

答案3

看起来你没有安装所需的依赖项。这可能是问题

在 pkg-config 搜索路径中未找到软件包 vte-2.91。尝试安装 vte-nghttps://github.com/thestinger/vte-ng

答案4

你可以termite使用以下脚本在 Ubuntu 上安装:

白蚁安装工

相关内容