crypto:chia:cli:install
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
crypto:chia:cli:install [2021/06/26 11:45] – peter | crypto: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 ===== |
+ | |||
+ | < | ||
sudo apt update | sudo apt update | ||
sudo apt upgrade -y | sudo apt upgrade -y | ||
+ | </ | ||
- | # Install Git. | + | ---- |
+ | |||
+ | ===== Install Git ===== | ||
+ | |||
+ | <code bash> | ||
sudo apt install git -y | sudo apt install git -y | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Checkout the Chia source from Git ===== | ||
- | # Checkout the source and install. | + | <code bash> |
git clone https:// | git clone https:// | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Install Chia ===== | ||
+ | <code bash> | ||
cd chia-blockchain | cd chia-blockchain | ||
sh install.sh | sh install.sh | ||
+ | </ | ||
- | # Activate the virtual environment in dir chia-blockchain. | + | ---- |
+ | |||
+ | ===== Activate the virtual environment in directory | ||
+ | |||
+ | <code bash> | ||
. ./activate | . ./activate | ||
+ | </ | ||
- | # The GUI requires you have Ubuntu Desktop or a similar windowing system installed. | + | ---- |
- | # You can not install and run the GUI as root | + | |
+ | ===== Install GUI (Optional) ===== | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | The GUI cannot be installed or run as root! | ||
+ | |||
+ | </ | ||
+ | |||
+ | <code bash> | ||
sh install-gui.sh | sh install-gui.sh | ||
cd chia-blockchain-gui | cd chia-blockchain-gui | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | <code bash> | ||
npm run electron & | npm run electron & | ||
</ | </ | ||
+ | |||
+ | </ | ||
---- | ---- | ||
+ | |||
+ | ===== Configure Chia ===== | ||
+ | |||
+ | <code bash> | ||
+ | chia init | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Setup the Keys ===== | ||
+ | |||
+ | ==== If you already have a seed (key) ==== | ||
+ | |||
+ | Add it with this command: | ||
+ | |||
+ | <code bash> | ||
+ | chia keys add | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * To display the current mnemonic keys: <code bash> | ||
+ | chia keys show --show-mnemonic-seed | ||
+ | </ | ||
+ | |||
+ | The ID will be displayed, which can be checked to ensure it matches. | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | === If no existing key exists, generate a new one === | ||
+ | |||
+ | Generate a new seed (key) with this command: | ||
+ | |||
+ | <code bash> | ||
+ | chia keys generate | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Check the Key ===== | ||
+ | |||
+ | <code bash> | ||
+ | chia keys show | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | Showing all public keys derived from your private keys: | ||
+ | |||
+ | Fingerprint: | ||
+ | Master public key (m): abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmnopqrstuvwx | ||
+ | Farmer public key (m/ | ||
+ | Pool public key (m/ | ||
+ | First wallet address: abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklmnopqrstuvwxyz | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
===== References ===== | ===== References ===== |
crypto/chia/cli/install.1624707922.txt.gz · Last modified: 2021/06/26 11:45 by peter