摘要:下安装及在与上的应用下载解压源文件上的版本发布地址下载解压进入源码目录当前下载的最后一个版本请根据自己的需求下载对应的版本,当前操作演示版本为及文件中开头的安装依赖其他非发行版的机器安装对应的依赖扩展即可生成文件如果无法连接网站修改
linux下安装protobuf及在python与php上的应用 下载解压源文件 github上的版本发布地址
https://github.com/protocolbuffers/protobuf/releases下载&解压&进入源码目录
当前下载protobuf2的最后一个版本
wget https://github.com/google/protobuf/archive/v2.6.1.zip unzip v2.6.1.zip -d ./ cd protobuf-2.6.1
请根据自己的需求下载对应的版本,当前操作演示版本为protobuf2,及.proto文件中syntax = "proto2";开头的安装依赖
sudo apt-get install autoconf automake libtool
其他非debian发行版的机器安装对应的依赖扩展即可生成configure文件
./autogen.sh
如果无法连接google网站
修改
curl http://googletest.googlecode.com/files/gtest-1.5.0.tar.bz2 | tar jx mv gtest-1.5.0 gtest
为
wget https://github.com/google/googletest/archive/release-1.5.0.tar.gz tar xzvf release-1.5.0.tar.gz mv googletest-release-1.5.0 gtest
也可由手动删除google的连接,直接下载文件并解压进行configure 查看帮助
./configure -h指定安装目录
./configure prefix=/opt/protobuf2安装
make && make install
权限不够的话,要使用sudo建立命令软连接
ln -s /opt/protobuf2/bin/protoc /usr/local/bin/protoc
建立软连接,就可以直接使用protoc命令了在Python中的应用 使用protobuf命令生成.py文件
protoc --proto_path=/home/zhangsan/protobuf --python_out=/home/zhangsan/python /home/zhangsan/protobuf/test.proto参数说明
参数proto_path指明.proto文件所在位置,如果不写,会提示以下内容:
/home/zhangsan/protobuf/test.proto: File does not reside within any path specified using --proto_path (or -I). You must specify a --proto_path which encompasses this file. Note that the proto_path must be an exact prefix of the .proto file names -- protoc is too dumb to figure out when two paths (e.g. absolute and relative) are equivalent (it"s harder than you think).
所以务必写上.proto文件所在目录路径
python_out即.py生成的目录
最后一个参数即为.proto文件的绝对路径
生成文件的优化修改这行代码如果使用IDE,提示无相关的类库的话,直接删掉/注释即可
from google.protobuf import symbol_database as _symbol_database
生成的.py文件中,一下内容可能报类缺少之类的问题,也可删掉、注释
_sym_db.RegisterMessage
文件中包含的空的数组 oneofs也可能给导致异常,删掉、注释即可
oneofs=[],
最后调整一下文件的代码风格即可使用
应用(假设是根据用户信息获取用户的博客文章)request = DemoRequest() request.user.id = 1 request.user.name = "zhangsan" body = request.SerializeToString() # body 既可以使用http发送 response = http_func_name(body) message = response.getBody() message.ParseFromString() # message 即为对应的数据对象 print(message.blog.id) print(message.blog.title)在PHP中的应用 下载allegro/php-protobuf
github版本发布页面
https://github.com/allegro/php-protobuf/releases
下载最新发布的版本(2018.11.26版本为v0.12.3)
wget https://github.com/allegro/php-protobuf/archive/v0.12.3.zip
解压到当前目录
unzip v0.12.3.zip -d ./安装php扩展
cd php-protobuf-0.12.3 phpize ./configure make make install配置php.ini
extension=protobuf.so
在扩展配置部分加入以上内容,执行php -ir | grep protobuf输出protobuf扩展信息即为正常,如:
protobuf PWD => /home/qingliu/soft/php-protobuf-0.12.3 $_SERVER["PWD"] => /home/qingliu/soft/php-protobuf-0.12.3在源码目录安装allegro/php-protobuf依赖的php类库
composer install 安装即可
使用protobuf生成.php文件protoc --proto_path=/home/zhangsan/protobuf --plugin=protoc-gen-allegrophp=protoc-gen-php.php --allegrophp_out=/home/zhangsan/php /home/zhangsan/protobuf/test.proto
请在allegro/php-protobuf的源码目录执行,正常执行完上述命令后,可以在 /home/zhangsan/php目录中看到生成的php文件,php无需修改,即可使用,如不符合自己的项目规范,可以自行调节IDE Helper
使用这个composer包就行啦
composer require ruoge3s/protobuf-message-helper
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/29706.html
摘要:下安装及在与上的应用下载解压源文件上的版本发布地址下载解压进入源码目录当前下载的最后一个版本请根据自己的需求下载对应的版本,当前操作演示版本为及文件中开头的安装依赖其他非发行版的机器安装对应的依赖扩展即可生成文件如果无法连接网站修改 linux下安装protobuf及在python与php上的应用 下载解压源文件 github上的版本发布地址 https://github.com/pr...
摘要:是一种常用的深度学习框架,主要应用在视频图像处理方面的应用上。由于没钱买,只能在虚拟机环境下配置版开发环境,大家勿笑。 caffe是一种常用的深度学习框架,主要应用在视频、图像处理方面的应用上。由于没钱买gpu,只能在虚拟机环境下配置Ubuntu CPU版caffe开发环境,大家勿笑。 1.首先,先安装依赖库: sudo apt-get install libprotobuf-dev...
阅读 3110·2021-11-22 15:25
阅读 3746·2021-11-17 09:33
阅读 3317·2021-11-08 13:15
阅读 3014·2021-09-22 10:56
阅读 507·2021-08-31 09:45
阅读 2710·2019-08-30 13:49
阅读 3045·2019-08-30 12:52
阅读 1109·2019-08-29 17:05