mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-08 18:14:26 -05:00
14 lines
304 B
Bash
14 lines
304 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
python3 -m venv .venv
|
|
. .venv/bin/activate
|
|
pip install wheel
|
|
pip install -e .
|
|
pip install -r requirements.txt
|
|
|
|
echo ""
|
|
echo "Chia blockchain install.sh complete."
|
|
echo "For assistance join us on Keybase in the #testnet chat channel"
|
|
echo "https://keybase.io/team/chia_network.public"
|