[protobuf installation on MAC] 맥에서 프로토버프 설치
1. Unix tools 사용을 위해 앱스토어에서 Xcode 설치 2. 터미널에서 sudo xcode-select --install 3. "port"설치를 위해 www.macports.org/에 접속 -> 운영체제에 맞는 .pkg 설치. 4. 터미널에서 sudo /opt/local/bin/port install autoconf automake libtool 5. github.com/protocolbuffers/protobuf/releases 에서 필요한 파일 다운로드 (예. protobuf-python-3.12.3.tar.gz ) 6. tar 파일이나 zip 파일 압축 풀린 경로로 들어가서(cd /경로/protobuf-3.12.3) ./configure # ./configure --prefix=/usr ..
2020.06.11