繁体   English   中英

./configure 安装 conky 时出错

[英]./configure error while installing conky

我已经从 GitHub 下载了 conky,当我尝试使用 ./configure 命令时,出现以下错误:

   bash: ./configure: No such file or directory

我在 Src 文件夹中打开了我的终端并尝试了这个命令。 我错过了什么?

这是终端和下载的conky文件夹的截图

我看到 CMakeLists.txt 并加倍检查,根据文档使用cmake

1.10 及更高版本

Conky 2 将使用 cmake 而不是 autotools,这意味着您将不再需要 autoconf 和 automake,但您将需要 cmake。

autoconf 和 automake(和 autogen)通常驱动“配置”。

您将需要 tolua 库(参考),可以使用apt-get install libtolua-dev libtolua++5.1-dev为 Linux 安装该库。 如果您保留默认的 cmake 配置,您还需要以下开发包: apt-get install libx11-dev libxft-dev libxdamage-dev libncurses5-dev libxinerama-dev

然后,构建 conky 将像这样工作:

 $ mkdir build $ cd build $ ccmake .. # this will launch a curses-based UI where you can configure # everything, when you are ready you can build as usual: $ make # This will compile conky in the `src` subdirectory $ make install

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM