mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-09 17:36:14 +03:00
133 lines
4.2 KiB
Bash
133 lines
4.2 KiB
Bash
#!/bin/bash
|
|
set -e
|
|
UBUNTU=false
|
|
DEBIAN=false
|
|
if [ "$(uname)" = "Linux" ]; then
|
|
#LINUX=1
|
|
if type apt-get; then
|
|
OS_ID=$(lsb_release -is)
|
|
if [ "$OS_ID" = "Debian" ]; then
|
|
DEBIAN=true
|
|
else
|
|
UBUNTU=true
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
# Check for non 64 bit ARM64/Raspberry Pi installs
|
|
if [ "$(uname -m)" = "armv7l" ]; then
|
|
echo ""
|
|
echo "WARNING:"
|
|
echo "The Chia Blockchain requires a 64 bit OS and this is 32 bit armv7l"
|
|
echo "For more information, see"
|
|
echo "https://github.com/Chia-Network/chia-blockchain/wiki/Raspberry-Pi"
|
|
echo "Exiting."
|
|
exit 1
|
|
fi
|
|
# Get submodules
|
|
git submodule update --init mozilla-ca
|
|
|
|
UBUNTU_PRE_2004=false
|
|
if $UBUNTU; then
|
|
LSB_RELEASE=$(lsb_release -rs)
|
|
# In case Ubuntu minimal does not come with bc
|
|
if [ "$(which bc |wc -l)" -eq 0 ]; then sudo apt install bc -y; fi
|
|
# Mint 20.04 repsonds with 20 here so 20 instead of 20.04
|
|
UBUNTU_PRE_2004=$(echo "$LSB_RELEASE<20" | bc)
|
|
UBUNTU_2100=$(echo "$LSB_RELEASE>=21" | bc)
|
|
fi
|
|
|
|
# Manage npm and other install requirements on an OS specific basis
|
|
if [ "$(uname)" = "Linux" ]; then
|
|
#LINUX=1
|
|
if [ "$UBUNTU" = "true" ] && [ "$UBUNTU_PRE_2004" = "1" ]; then
|
|
# Ubuntu
|
|
echo "Installing on Ubuntu pre 20.04 LTS."
|
|
sudo apt-get update
|
|
sudo apt-get install -y python3.7-venv python3.7-distutils
|
|
elif [ "$UBUNTU" = "true" ] && [ "$UBUNTU_PRE_2004" = "0" ] && [ "$UBUNTU_2100" = "0" ]; then
|
|
echo "Installing on Ubuntu 20.04 LTS."
|
|
sudo apt-get update
|
|
sudo apt-get install -y python3.8-venv python3-distutils
|
|
elif [ "$UBUNTU" = "true" ] && [ "$UBUNTU_2100" = "1" ]; then
|
|
echo "Installing on Ubuntu 21.04 or newer."
|
|
sudo apt-get update
|
|
sudo apt-get install -y python3.9-venv python3-distutils
|
|
elif [ "$DEBIAN" = "true" ]; then
|
|
echo "Installing on Debian."
|
|
sudo apt-get update
|
|
sudo apt-get install -y python3-venv
|
|
elif type pacman && [ -f "/etc/arch-release" ]; then
|
|
# Arch Linux
|
|
echo "Installing on Arch Linux."
|
|
sudo pacman -S --needed python git
|
|
elif type yum && [ ! -f "/etc/redhat-release" ] && [ ! -f "/etc/centos-release" ] && [ ! -f "/etc/fedora-release" ]; then
|
|
# AMZN 2
|
|
echo "Installing on Amazon Linux 2."
|
|
sudo yum install -y python3 git
|
|
elif type yum && [ -f "/etc/redhat-release" ] || [ -f "/etc/centos-release" ] || [ -f "/etc/fedora-release" ]; then
|
|
# CentOS or Redhat or Fedora
|
|
echo "Installing on CentOS/Redhat/Fedora."
|
|
fi
|
|
elif [ "$(uname)" = "Darwin" ] && ! type brew >/dev/null 2>&1; then
|
|
echo "Installation currently requires brew on MacOS - https://brew.sh/"
|
|
elif [ "$(uname)" = "OpenBSD" ]; then
|
|
export MAKE=${MAKE:-gmake}
|
|
export BUILD_VDF_CLIENT=${BUILD_VDF_CLIENT:-N}
|
|
elif [ "$(uname)" = "FreeBSD" ]; then
|
|
export MAKE=${MAKE:-gmake}
|
|
export BUILD_VDF_CLIENT=${BUILD_VDF_CLIENT:-N}
|
|
fi
|
|
|
|
find_python() {
|
|
set +e
|
|
unset BEST_VERSION
|
|
for V in 39 3.9 38 3.8 37 3.7 3; do
|
|
if which python$V >/dev/null; then
|
|
if [ "$BEST_VERSION" = "" ]; then
|
|
BEST_VERSION=$V
|
|
fi
|
|
fi
|
|
done
|
|
echo $BEST_VERSION
|
|
set -e
|
|
}
|
|
|
|
if [ "$INSTALL_PYTHON_VERSION" = "" ]; then
|
|
INSTALL_PYTHON_VERSION=$(find_python)
|
|
fi
|
|
|
|
# This fancy syntax sets INSTALL_PYTHON_PATH to "python3.7", unless
|
|
# INSTALL_PYTHON_VERSION is defined.
|
|
# If INSTALL_PYTHON_VERSION equals 3.8, then INSTALL_PYTHON_PATH becomes python3.8
|
|
|
|
INSTALL_PYTHON_PATH=python${INSTALL_PYTHON_VERSION:-3.7}
|
|
|
|
echo "Python version is $INSTALL_PYTHON_VERSION"
|
|
$INSTALL_PYTHON_PATH -m venv venv
|
|
if [ ! -f "activate" ]; then
|
|
ln -s venv/bin/activate .
|
|
fi
|
|
|
|
# shellcheck disable=SC1091
|
|
. ./activate
|
|
# pip 20.x+ supports Linux binary wheels
|
|
python -m pip install --upgrade pip
|
|
python -m pip install wheel
|
|
#if [ "$INSTALL_PYTHON_VERSION" = "3.8" ]; then
|
|
# This remains in case there is a diversion of binary wheels
|
|
python -m pip install --extra-index-url https://pypi.chia.net/simple/ miniupnpc==2.2.2
|
|
python -m pip install -e . --extra-index-url https://pypi.chia.net/simple/
|
|
|
|
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"
|
|
echo ""
|
|
echo "Try the Quick Start Guide to running chia-blockchain:"
|
|
echo "https://github.com/Chia-Network/chia-blockchain/wiki/Quick-Start-Guide"
|
|
echo ""
|
|
echo "To install the GUI type 'sh install-gui.sh' after '. ./activate'."
|
|
echo ""
|
|
echo "Type '. ./activate' and then 'chia init' to begin."
|