1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

phpenvでprotobufをインストールする方法

Posted at

protocを取得する

brew install protobuf

peclから圧縮ファイルを取得する

http://pecl.php.net/package/protobuf
から欲しいバージョンのtgzを確認する
今回は3.4.0をインストールします

cd /tmp
wget http://pecl.php.net/get/protobuf-3.4.0.tgz 
tar zxvf protobuf-3.4.0.tgz
cd protobuf-3.4.0
phpize
./configure
make
make test
make install
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?