That's it, well done! Check out our Plotting Guide & Farming Guide
sudo apt-get install python3.7-venv python3.7-distutils python3.7-dev git lsb-release -y
sudo apt-get update
sudo apt-get upgrade -y
sudo apt install git -y
git clone https://github.com/Chia-Network/chia-blockchain.git -b latest --recurse-submodules
cd chia-blockchain
sh install.sh
. ./activate
sh install-gui.sh
cd chia-blockchain-gui
npm run electron &
To Update/Upgrade from previous version
cd chia-blockchain
. ./activate
chia stop -d all
deactivate
git fetch
git checkout latest
git reset --hard FETCH_HEAD --recurse-submodules
git status
sh install.sh
. ./activate
chia init
cd chia-blockchain-gui
git fetch
cd ..
chmod +x ./install-gui.sh
./install-gui.sh
cd chia-blockchain-gui
npm run electron &
sudo yum install epel-release -y
sudo yum update -y
sudo yum install gcc openssl-devel bzip2-devel zlib-devel libffi libffi-devel -y
sudo yum install libsqlite3x-devel -y
sudo yum groupinstall "Development Tools" -y
sudo yum install python3-devel gmp-devel boost-devel libsodium-devel -y
sudo yum install wget -y
sudo wget https://www.python.org/ftp/python/3.7.7/Python-3.7.7.tgz
sudo tar -zxvf Python-3.7.7.tgz ; cd Python-3.7.7
./configure --enable-optimizations; sudo make -j$(nproc) altinstall; cd ..
git clone https://github.com/Chia-Network/chia-blockchain.git -b latest
cd chia-blockchain
sh install.sh
. ./activate
sh install-gui.sh
cd chia-blockchain-gui
npm run build
npm run electron
curl -sL https://rpm.nodesource.com/setup_10.x | sudo bash -
sudo yum install -y nodejs
python3.7 -m venv venv
ln -s venv/bin/activate
. ./activate
pip install --upgrade pip
pip install -i https://hosted.chia.net/simple/ miniupnpc==2.1 setproctitle==1.1.10
pip install chia-blockchain==1.2.1
If you installed Chia with the Linux installer files, your chia executable should be in one of the following locations:
/usr/lib/chia-blockchain/resources/app.asar.unpacked/daemon/chia
/lib/chia-blockchain/resources/app.asar.unpacked/daemon/chia
If you installed from source (using git), just activate and run chia directly.
← Back to the home page