Solidity

在 Windows 8.1 上安裝 Ganache UI

  • March 1, 2020

我正在嘗試在我的 Windows 8.1 機器上安裝 Ganache。

我是Ganache.appxGanach 官方網站下載的。

我還安裝了Windows 10 SDK

正如文件中指出的那樣:

在建構之前,使用以下文件創建 ./certs 目錄:

./certs/cert.pfx

我在一個文件夾中一起創建的:

在此處輸入圖像描述

但是,現在我被卡住瞭如何安裝 ganache。對接下來的步驟有什麼建議嗎?

感謝您的回复!

目前行為

當我通過安裝windows指令安裝testrpc時,出現“找不到Windows SDK 8.1版”的錯誤。我想大多數人不會為 Windows PC 安裝這個。

  1. 使用的版本:最新?
  2. 環境名稱和版本(例如 nginx 1.9.1 上的 PHP 5.4):
  3. Windows 10 64 伺服器類型和版本:

Windows 10 64 作業系統和版本:

Windows 10 64 NodeJs 版本:節點 6.7.0

TestRPC 很容易在 Windows 上安裝。只需下載並安裝nodejs,然後執行以下命令:

$ npm install 
$ npm install -g ethereumjs-testrpc

不要下載*.appx. 這就是 Windows 10 商店應用程序格式。在你的 cmd 中執行以下程式碼

git clone git@github.com:/trufflesuite/ganache
cd ganache
npm install -g windows-build-tools
npm install
npm start

注意:ganache 團隊此前曾表示,他們目前對將官方支持擴展到較低的 windows 版本不感興趣。按照上述步驟,您正在嘗試建構自己。自述文件中提到的步驟僅適用於撰寫本文時的 Windows 10。

答案基於https://github.com/trufflesuite/ganache/issues/337

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