如何在 Windows 中安装 Solidity?
要在 windows 上安装solidity,请确保您使用的是 windows 10,因为只有 windows 10 提供了内置的 Linux 子系统。借助此功能,我们可以在 Windows 机器上运行 Ubuntu 终端。以下是在 Windows 上设置 Solidity 的步骤:
第 1 步:打开系统上的控制面板,然后在Control Panel>Programs>Programs and Features>Turn Windows features on or off下切换到Windows Subsystem for Linux 。
第 2 步:系统重新启动后,从 Microsoft 商店安装“Ubuntu LTS 18.04”并在安装后进行设置。
第 3 步:设置 Bash 后,使用以下命令安装并检查必要的依赖项,如cURL、 Node 版本管理器(NVM)、 NodeJS和Node Packet Manager(NPM) :
- 安装卷曲:
sudo apt-get install curl
curl --version
- 安装 NVM:
curl -o-https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
nvm --version
- 安装 NodeJS 和 NPM:
nvm install node
node --version
npm --version
- 安装依赖项后,使用以下代码安装并检查solidity编译器solc :
npm install -g solc
solcjs --version