Cpp-Ethereum

如何停止 cpp-ethereum 程序並刪除 cpp-ethereum 和區塊鏈

  • March 25, 2019

Mac OS X,使用命令行:

如何停止 cpp-ethereum?我昨晚安裝了它,從那以後它一直以 100% 的速度執行我的處理器。我殺死了程序($ kill < PID >),它只是啟動了一個新程序。

我只是想使用 cpp-ethereum,但對於個人用途,geth 很棒。在 geth、mist 和 cpp-ethereum (eth) 之間,我現在有 3 個區塊鏈副本,而且我的硬碟上沒有空間。那麼我該如何擺脫這種混亂呢?我正在考慮刪除 cpp-ethereum 和霧,並堅持使用 geth。但也許你有另一種解決方案……請幫忙!

感謝:D

你是如何安裝 cpp-ethereum 的?你是用自製的還是自己編譯的?

如果您使用自製軟體,那麼您將執行

brew remove cpp-ethereum

否則,只需從系統路徑中刪除該程序。

現在嘗試

brew uninstall cpp-ethereum將導致以下錯誤:

Error: Aleth (formerly cpp-ethereum) has been removed from Homebrew. Please install binary releases from https://github.com/ethereum/aleth/releases.

您首先要執行此操作:

brew untap ethereum/ethereum

然後

brew uninstall cpp-ethereum

應該管用

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