Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- perfect
- postgres
- appium
- openpyxl
- GoCD
- Materials
- create table
- nohup
- kitura
- ubuntu
- postgresql
- appium server
- STF_PortForwarding
- 실행권한
- nGrinder
- ssh
- 28015
- mysql
- ftp
- port forwarding
- sshpass
- Jupyter Notebook
- STF
- nmap
- SWIFT
- PYTHON
- rethinkdb
- centos
- insert
- Jupyter
Archives
- Today
- Total
don't stop believing
solidity 컴파일러 설치 (on Mac) 본문
Contract 개발 후 EVM 바이트코드로 컴파일 한 뒤 블록체인에 배포해야 합니다.
Mac에 Solidity 컴파일러를 설치해 보겠습니다.
설치 정보는 아래 링크에서 확인했습니다
https://solidity.readthedocs.io/en/v0.4.24/installing-solidity.html
Mac에서 brew를 이용해 설치하겠습니다.
update와 upgrade를 해줍니다. 그리고 tap으로 ethereum/ethereum repository를 지정합니다.
solidity를 설치합니다.
1234$ brew update$ brew upgrade$ brew tap ethereum/ethereum$ brew install solidity
정상적으로 설치되었다면 solidity compiler의 버전을 확인해 보겠습니다.
123$ solc --versionsolc, the solidity compiler commandline interfaceVersion: 0.4.24+commit.e67f0147.Darwin.appleclang
solidity compiler가 있는 경로도 확인해 줍니다.
12$ which solc/usr/local/bin/solc
'Ethereum' 카테고리의 다른 글
Geth (Go-ethereum) 설치 (on Windows 10) (1) | 2018.09.26 |
---|---|
Contract 개발 환경 (Remix; Browser-Solidity) (0) | 2018.08.26 |
Geth 기동 시 계정 잠금 해제 (0) | 2018.08.25 |
Geth 백그라운드 실행과 JSON-RPC 서버 실행 (0) | 2018.08.25 |
genesis 파일을 알아봅시다. (0) | 2018.08.25 |