Go-Ethereum
如何在 Debian10 上安裝 Go-ethereum 和solidity
我在wsl上使用debain,我想為區塊鏈開發安裝乙太坊和solidity,但我找不到確切的方法。
鏈錘使用 geth 和 solc 作為對 Debian 的依賴。您可以使用安裝腳本的借用部分來幫助您。
- 安裝 Go:https ://github.com/drandreaskrueger/chainhammer/blob/master/scripts/install-go.sh
- 安裝 Geth:https ://github.com/drandreaskrueger/chainhammer/blob/master/scripts/install-geth.sh
- 安裝 Solc:https ://github.com/drandreaskrueger/chainhammer/blob/master/scripts/install-solc.sh
或者,這些說明應該有效:
- 從原始碼建構:https ://github.com/ethereum/go-ethereum/wiki/Installing-Geth#build-it-from-source-code
- 不使用 Go 建構:https ://github.com/ethereum/go-ethereum/wiki/Installing-Geth#building-without-a-go-workflow
更新
只安裝 Solidity:
wget https://github.com/ethereum/solidity/releases/download/v0.5.13/solc-static-linux chmod 755 solc-static-linux sudo mv solc-static-linux /usr/local/bin sudo ln -s -f /usr/local/bin/solc-static-linux /usr/local/bin/solc solc --version