Ganache

無法在 Ubuntu 上安裝 Ganache GUI?

  • December 20, 2021

我正在嘗試在我的 ubuntu 18.04 上安裝 Ganache GUI。我從該站點下載了 Ganache-2.0.1.AppImage。在該站點上,它說點兩下時會自動安裝該軟體包。但它給出了找不到任何應用程序來打開文件的錯誤。

我已經通過這個命令

“npm install -g ganache-cli”安裝了 Ganache cli

不能在 linux 上安裝 Ganache 的 GUI 嗎?如果是,請告訴我怎麼做?

您需要先將 AppImage 文件標記為可執行程序,然後才能執行它。

  1. 右鍵點擊文件並轉到Properties選項;
  2. 在“權限”選項卡下,選中“允許將文件作為程序執行”複選框;
  3. 點兩下執行;
  4. 可選擇接受集成和創建快捷方式的提議。

打開終端並輸入以下命令,

$ git clone https://github.com/trufflesuite/ganache.git
$ cd ganache
$ npm install
$ npm start

此獲取說明詳細,您可以從以下網址獲取:https : //eattheblocks.com/installing-the-the-ganache-gui-episode-13/

我希望這能幫到您。

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