我正在尝试为 Dansguardian 安装 GUI(https://bitbucket.org/ssoulaimane/webcontentcontrol-gambas3),但是当我输入:
./configure && make && sudo make install
我收到一条错误消息:
bash: ./configure: No such file or directory
我已经完成了手册(在我提供的网站上)中提到的所有前面的步骤,除非我误解了什么。
答案1
您应该首先克隆存储库(使用git clone https://bitbucket.org/ssoulaimane/webcontentcontrol-gambas3
)。
之后,您应该使用目录更改存储库文件夹cd webcontentcontrol-gambas3
,然后才应该执行./configure && make && sudo make install
。
configure
是位于该存储库中的文件,它以 编写bash
。您的主文件夹中没有任何文件,configure
因此您必须cd
在存储库文件夹中。
顺便说一句,如果上面列出的命令./configure && make && sudo make install
不起作用,请使用bash configure && make && sudo make install
。但我真的怀疑它不起作用。
祝你好运!