我要评分
获取效率
正确性
完整性
易理解

Installing protoc

  • Install Protoc on the management and compute nodes.
  • This section uses Protoc 3.11.4 as an example.

Procedure

  1. Download protoc 3.11.4.
    1
    2
    3
    cd /root
    wget -c
    https://github.com/protocolbuffers/protobuf/releases/download/v3.11.4/protoc-3.11.4-linux-aarch_64.zip
    
  2. Decompress the package and install protoc.
    1
    sudo unzip protoc-3.11.4-linux-aarch_64.zip -d /usr/local
    

  3. Check whether protoc is successfully installed.
    1
    protoc --version
    

    If the Protoc version is displayed, the installation is successful.