User Tools

Site Tools


crypto:chia:cli:install

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
crypto:chia:cli:install [2021/06/22 09:05] – created petercrypto:chia:cli:install [2021/06/28 13:11] (current) – [If you already have a seed (key)] peter
Line 1: Line 1:
 ====== Crypto - Chia - CLI - Install ====== ====== Crypto - Chia - CLI - Install ======
 +
 +===== Update Ubuntu =====
 +
 +<code bash>
 +sudo apt update
 +sudo apt upgrade -y
 +</code>
 +
 +----
 +
 +===== Install Git =====
 +
 +<code bash>
 +sudo apt install git -y
 +</code>
 +
 +----
 +
 +===== Checkout the Chia source from Git =====
 +
 +<code bash>
 +git clone https://github.com/Chia-Network/chia-blockchain.git -b latest --recurse-submodules
 +</code>
 +
 +----
 +
 +===== Install Chia =====
 +
 +<code bash>
 +cd chia-blockchain
 +
 +sh install.sh
 +</code>
 +
 +----
 +
 +===== Activate the virtual environment in directory chia-blockchain =====
 +
 +<code bash>
 +. ./activate
 +</code>
 +
 +----
 +
 +===== Install GUI (Optional) =====
 +
 +<WRAP info>
 +**NOTE:**  The GUI requires Ubuntu Desktop or a similar windowing system is installed.
 +
 +The GUI cannot be installed or run as root!
 +
 +</WRAP>
 +
 +<code bash>
 +sh install-gui.sh
 +
 +cd chia-blockchain-gui
 +</code>
 +
 +<WRAP info>
 +**NOTE:**  The GUI can then be run:
 +
 +<code bash>
 +npm run electron &
 +</code>
 +
 +</WRAP>
 +
 +----
 +
 +===== Configure Chia =====
 +
 +<code bash>
 +chia init
 +</code>
 +
 +----
 +
 +===== Setup the Keys =====
 +
 +==== If you already have a seed (key) ====
 +
 +Add it with this command:
 +
 +<code bash>
 +chia keys add
 +</code>
 +
 +<WRAP info>
 +**NOTE:**  This will prompt for the seed to be entered.
 +
 +  * To display the current mnemonic keys: <code bash>
 +chia keys show --show-mnemonic-seed
 +</code>
 +
 +The ID will be displayed, which can be checked to ensure it matches.
 +
 +</WRAP>
 +
 +
 +----
 +
 +=== If no existing key exists, generate a new one ===
 +
 +Generate a new seed (key) with this command:
 +
 +<code bash>
 +chia keys generate
 +</code>
 +
 +----
 +
 +===== Check the Key =====
 +
 +<code bash>
 +chia keys show
 +</code>
 +
 +returns:
 +
 +<code bash>
 +Showing all public keys derived from your private keys:
 +
 +Fingerprint: 1234567890
 +Master public key (m): abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmnopqrstuvwx
 +Farmer public key (m/12345/6789/0/0): abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmnopqrstuvwx
 +Pool public key (m/12345/6789/1/0): abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmnopqrstuvwx
 +First wallet address: abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmnopqrstuvwxyz
 +</code>
 +
 +----
 +
 +
 +===== References =====
 +
 +https://github.com/Chia-Network/chia-blockchain/wiki/INSTALL
  
crypto/chia/cli/install.1624352709.txt.gz · Last modified: 2021/06/22 09:05 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki