红联Linux门户
Linux帮助

Ubuntu下protobuf及其python runtime的安装

发布时间:2016-07-28 15:25:30来源:linux网站作者:coderTC
1.下载、解压protobuf
#wget https://github.com/google/protobuf/releases/download/v3.0.0-beta-4/protobuf-python-3.0.0-beta-4.tar.gz
#tar zxvf protobuf-python-3.0.0-beta-4.tar.gz
 
2.安装protobuf compiler
#cd protobuf-3.0.0-beta-4
#./configure
#make
#make check
#sudo make install
 
3.安装protobuf python runtime
#cd python
#python setup.py build
#python setup.py test
#sudo python setup.py install
 
4.测试protobuf compiler
#protoc --version
显示出版本号,表明正确安装。
 
5.测试protobuf python runtime
#python
#>>> import google.protobuf
不报错证明正确安装。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/22799.html