Go-Ethereum

如何在 Debian10 上安裝 Go-ethereum 和solidity

  • December 9, 2019

我在wsl上使用debain,我想為區塊鏈開發安裝乙太坊和solidity,但我找不到確切的方法。

鏈錘使用 geth 和 solc 作為對 Debian 的依賴。您可以使用安裝腳本的借用部分來幫助您。

或者,這些說明應該有效:

更新

只安裝 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

引用自:https://ethereum.stackexchange.com/questions/78157