Detailed tutorial on installing Protobuf 3 on Ubuntu

Detailed tutorial on installing Protobuf 3 on Ubuntu

When to install

If you use the protoc command and encounter Protoc not found, it means it is not installed. Or, if an error occurs during execution: This parser only recognizes "proto2", it means it is not version 3.0.

Installation process and possible problems

Installation Instructions

For detailed introduction, please refer to this article: A brief introduction to protobuf and installation in Ubuntu 16.04 environment

Execute the following commands in sequence to download the source code, compile and install it. It takes a long time, more than 10 minutes.

sudo apt-get install autoconf automake libtool curl make g++ unzip
git clone https://github.com/google/protobuf.git
cd protobuf
git submodule update --init --recursive
./autogen.sh
./configure
make
make check
sudo make install
sudo ldconfig # refresh shared library cache.

Possible problems

It is very likely that the following error message will appear during execution:

./autogen.sh: 4: ./autogen.sh: autoreconf: not found

Solution: Execute the following command.

sudo apt-get install autoconf
sudo apt-get install automake
sudo apt-get install libtool

After the installation is complete

Run the following command to verify the installation result and view the version number.

protoc --version

Congratulations on getting libprotoc 3.9.0 or higher.

Summarize

The above is the tutorial for installing Protobuf 3 on Ubuntu introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • A brief introduction to protobuf and installation tutorial in Ubuntu 16.04 environment

<<:  MySQL multi-instance configuration solution

>>:  Detailed explanation of this pointing problem in JavaScript function

Recommend

MySQL database case sensitivity issue

In MySQL, databases correspond to directories wit...

MySQL restores data through binlog

Table of contents mysql log files binlog Binlog l...

A brief discussion on the understanding of TypeScript index signatures

Table of contents 1. What is an index signature? ...

Code to display the contents of a txt book on a web page

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML ...

Import csv file into mysql using navicat

This article shares the specific code for importi...

Solution to the problem that the mysql8.0.11 client cannot log in

This article shares with you the solution to the ...

Pure CSS and Flutter realize breathing light effect respectively (example code)

Last time, a very studious fan asked if it was po...

How to customize at and cron scheduled tasks in Linux

There are two types of scheduled tasks in Linux s...

The best 9 foreign free picture material websites

It is difficult to find good image material websi...

Preventing SQL injection in web projects

Table of contents 1. Introduction to SQL Injectio...

How to find the specified content of a large file in Linux

Think big and small, then redirect. Sometimes Lin...

Use of SerialPort module in Node.js

Table of contents Purpose Module Installation Bas...