source complile 或 use apt 有什么区别?

What's the difference of source complile or use apt?

例如,我想安装glog,我可以使用

sudo apt-get install libgoogle-glog-dev

git clone https://github.com/google/glog

./autogen.sh && ./configure && make && make install

有什么区别?

如果你能帮助我,我将不胜感激。

sudo apt-get install libgoogle-glog-dev,

它以包的形式安装和维护程序和其他文件集合(数据、文档等)。

而在第二个中,您首先从 Github 存储库下载源代码,然后 运行 各种 shell 文件将其安装在您的系统上。

希望对你有所帮助