블록체인
22.03.16 [IPFS] IPFS CLI for Mac 설치
슈팅스타제제
2022. 3. 16. 13:14
1. dist.ipfs.io에서 맥 버전 다운로드
curl -O https://dist.ipfs.io/go-ipfs/v0.12.0/go-ipfs_v0.12.0_darwin-amd64.tar.gz
2. 파일 풀기!
tar -xvzf go-ipfs_v0.12.0_darwin-amd64.tar.gz
3. go-ipfs 설치
cd go-ipfs
bash install.sh //아마 나처럼 sudo를 붙여야 하는 사람도 있다.
4. ipfs 설치 및 버전 확인
ipfs --version
참고문서링크
https://docs.ipfs.io/install/command-line/#official-distributions
Command-line | IPFS Docs
Command-line Installing IPFS through the command-line is handy if you plan on building applications and services on top of an IPFS node. This method is also useful if you're setting up a node without a user interface, usually the case with remote servers o
docs.ipfs.io