以Windows系统搭建基于Ethereum(以太坊)的区块链开发环境(具体操作与截图)
区块链设计开发小组 2019/04/01
借鉴博客:https://blog.csdn/cuiran/article/details/79239393
环境搭建
访问https://geth.ethereum/downloads/ ,下载geth-windows-amd64-1.7.3-4bb3c89d.exe
下载完成后点击geth.exe安装。
配置go语言环境
可通过choco进行安装,可访问链接 https://chocolatey 进行安装choco 。
或以下步骤安装:
1.使用cmd.exe安装
运行一下命令:
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
运行后截图:
2.输入命令:Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString(&#