在 Linux 下安装 Protobuf,您可以使用以下命令:
sudo apt-get install build-essential autoconf automake libtool libssl-dev libgtest-dev cmake
对于 CentOS 或 RHEL 系统,您可以使用以下命令安装依赖包:
sudo yum install gcc-c++ make openssl-devel gtest-devel cmake
git clone https://github.com/protocolbuffers/protobuf.git
cd protobuf
./autogen.sh
./configure
make
sudo make install
~/.bashrc
或 ~/.bash_profile
文件来实现这一点。在文件末尾添加以下内容:export PATH=$PATH:/usr/local/bin
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
然后保存文件并运行以下命令使更改生效:
source ~/.bashrc
或
source ~/.bash_profile
现在您已经成功安装了 Protobuf,并可以在 Linux 系统中使用它了。