我想安装tinyproxy
https://banu.com/tinyproxy/
当我cd
进入目录并运行make
时
我懂了
checking for a2x... no
configure: error: Test for asciidoc failed. See the file 'INSTALL' for help.
然后我想安装asciidoc
我懂了
[root@dd tinyproxy-1.8.3]yum install asciidoc
Loaded plugins: auto-update-debuginfo, langpacks, presto, refresh-packagekit
Setting up Install Process
No package asciidoc available.
Error: Nothing to do
怎么处理呢?
谢谢
最佳答案
如果asciidoc不在您的Linux发行版中,或者您不是root用户。您必须手动安装。从http://www.methods.co.nz/asciidoc/下载asciidoc tarball并执行通常的操作:
configure --prefix=${HOME} && make && make install
然后确保$ {HOME}/bin在您的PATH中,例如通过运行
导出PATH = $ {PATH}:$ {HOME}/bin
tinyproxy的配置脚本将检查a2x是否在您的PATH中。如果找不到它,您将无法编译它。
关于linux - 安装tinyproxy时对asciidoc的测试失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15701286/