在ubuntu中使用gflags库

时间:2015-06-04 16:14:39

标签: linux gflags

我在安装gflags时遇到问题。如果我在(https://github.com/gflags/gflags/blob/master/INSTALL.md)中使用apt-get,我会收到以下错误

sudo apt-get install gflags
Reading package lists... Done
Building dependency tree        
Reading state information... Done
E: Unable to locate package gflags

如何安装gflags?

1 个答案:

答案 0 :(得分:9)

在Ubuntu或Debian机器上你可以得到这样的相关包:

$ apt-cache search gflags

我的机器上的输出(Ubuntu 14.04):

  

libgflags-dev - 用于C ++的命令行标记模块(开发文件)

     

libgflags-doc - gflags的文档

     

libgflags2 - 用于C ++(共享库)的命令行标志模块

     

python-gflags - Google命令行标记模块的Python实现

     

python-google-apputils - 适用于Python的Google应用程序实用程序

所以,我认为您可以使用它的全名来安装它:

$ sudo apt-get install libgflags2 libgflags-dev