만족

[Ethereum] parity-ethereum 설치 오류 본문

[Ethereum] parity-ethereum 설치 오류

BlockChain/Etherium Satisfaction 2021. 9. 1. 00:27

rust는 이곳에서 설치할 수 있다.

 

이미 설치되었다고 가정한다.

 

https://github.com/openethereum/parity-ethereum

 

GitHub - openethereum/parity-ethereum: The fast, light, and robust client for Ethereum-like networks.

The fast, light, and robust client for Ethereum-like networks. - GitHub - openethereum/parity-ethereum: The fast, light, and robust client for Ethereum-like networks.

github.com

플랫폼은 MacOS이다.

cargo install 오류

일단 cargo install 하면 권한 문제로 실패한다.

 

sudo cargo install 오류

역시 오류가 난다.

 

처음엔 Caused by: 부분을 보고 dependency가 잘못 정의된 줄 알고 Cargo.toml을 열심히 뒤져보았지만

정답은 warning에 있었다.

 

path를 지정해주지 않아 엉뚱한 곳에서 작동되는 것 같다.

 

정상적으로 패리티를 설치하기

sudo cargo install --features final --locked --path .

몇분 후에 설치가 완료된다.

 

이제 parity -v 명령어를 통해 parirty가 설치되었는지 확인해볼 수 있다.

잘된다.

 

이거때문에 오늘 6시간을 꼬라박혔다.

 

warning이라 무시해도 될 줄 알았는데... 앞으로는 warning도 같이 봐야겠다.



Comments