Install Chia Network using the repository

1. Update the apt package index:

# apt-get update

# apt-get install ca-certificates curl gnupg

2. Add Chia’s official GPG Key:

# curl -sL https://repo.chia.net/FD39E6D3.pubkey.asc | sudo gpg –dearmor -o /usr/share/keyrings/chia.gpg

3. Set up the stable repository:

# echo “deb [arch=$(dpkg –print-architecture) signed-by=/usr/share/keyrings/chia.gpg] https://repo.chia.net/debian/ stable main” | sudo tee /etc/apt/sources.list.d/chia.list > /dev/null

4. Update repo:

# apt-get update

5. Install Chia:

For FULL UI VERSION
# apt-get install chia-blockchain

For CLI ONLY VERSION
# apt-get install chia-blockchain-cli