安装中文man 这里 git clone https://github.com/man-pages-zh/manpages-zh.git
dnf install autoconf
./configure --disable-zhtw --prefix=/usr/local/zhman
make && make install
报错看后面 报错No such file or directory at /usr/share/autoconf/Autom4te/FileUtils.pm line 326. 解决 For me, I had to install automake instead of autoconf on Ubuntu 18.04. 安装 automake这里
报错安装opencc这里
报错装doxygen 这里 参考这里 官网 0. 相关链接 doxygen官网:http://www.doxygen.nl/
下载 git clone https://github.com/doxygen/doxygen.git cd doxygen mkdir build cd build cmake -G “Unix Makefiles” …此时出现报错: “Could NOT find FLEX (missing: FLEX_EXECUTABLE)” 经过搜索,解决方案如下:
sudo apt-get install flex sudo apt-get install bison
centos 安装 dnf install flex bison
之后成功解决,再执行后续二连即可:
make sudo make install
解压报错 tar 这里
