commit
eb280798d8
70
setup.sh
70
setup.sh
@ -1,12 +1,16 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#encoding=utf8
|
#encoding=utf8
|
||||||
|
|
||||||
|
function echo_block() {
|
||||||
|
echo "----------------------------"
|
||||||
|
echo $1
|
||||||
|
echo "----------------------------"
|
||||||
|
}
|
||||||
|
|
||||||
function check_installed_pip() {
|
function check_installed_pip() {
|
||||||
${PYTHON} -m pip > /dev/null
|
${PYTHON} -m pip > /dev/null
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
echo "-----------------------------"
|
echo_block "Installing Pip for ${PYTHON}"
|
||||||
echo "Installing Pip for ${PYTHON}"
|
|
||||||
echo "-----------------------------"
|
|
||||||
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
|
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
|
||||||
${PYTHON} get-pip.py
|
${PYTHON} get-pip.py
|
||||||
rm get-pip.py
|
rm get-pip.py
|
||||||
@ -37,9 +41,7 @@ function check_installed_python() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function updateenv() {
|
function updateenv() {
|
||||||
echo "-------------------------"
|
echo_block "Updating your virtual env"
|
||||||
echo "Updating your virtual env"
|
|
||||||
echo "-------------------------"
|
|
||||||
if [ ! -f .env/bin/activate ]; then
|
if [ ! -f .env/bin/activate ]; then
|
||||||
echo "Something went wrong, no virtual environment found."
|
echo "Something went wrong, no virtual environment found."
|
||||||
exit 1
|
exit 1
|
||||||
@ -110,18 +112,14 @@ function install_mac_newer_python_dependencies() {
|
|||||||
|
|
||||||
if [ ! $(brew --prefix --installed hdf5 2>/dev/null) ]
|
if [ ! $(brew --prefix --installed hdf5 2>/dev/null) ]
|
||||||
then
|
then
|
||||||
echo "-------------------------"
|
echo_block "Installing hdf5"
|
||||||
echo "Installing hdf5"
|
|
||||||
echo "-------------------------"
|
|
||||||
brew install hdf5
|
brew install hdf5
|
||||||
fi
|
fi
|
||||||
export HDF5_DIR=$(brew --prefix)
|
export HDF5_DIR=$(brew --prefix)
|
||||||
|
|
||||||
if [ ! $(brew --prefix --installed c-blosc 2>/dev/null) ]
|
if [ ! $(brew --prefix --installed c-blosc 2>/dev/null) ]
|
||||||
then
|
then
|
||||||
echo "-------------------------"
|
echo_block "Installing c-blosc"
|
||||||
echo "Installing c-blosc"
|
|
||||||
echo "-------------------------"
|
|
||||||
brew install c-blosc
|
brew install c-blosc
|
||||||
fi
|
fi
|
||||||
export CBLOSC_DIR=$(brew --prefix)
|
export CBLOSC_DIR=$(brew --prefix)
|
||||||
@ -131,9 +129,7 @@ function install_mac_newer_python_dependencies() {
|
|||||||
function install_macos() {
|
function install_macos() {
|
||||||
if [ ! -x "$(command -v brew)" ]
|
if [ ! -x "$(command -v brew)" ]
|
||||||
then
|
then
|
||||||
echo "-------------------------"
|
echo_block "Installing Brew"
|
||||||
echo "Installing Brew"
|
|
||||||
echo "-------------------------"
|
|
||||||
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
||||||
fi
|
fi
|
||||||
#Gets number after decimal in python version
|
#Gets number after decimal in python version
|
||||||
@ -148,7 +144,14 @@ function install_macos() {
|
|||||||
# Install bot Debian_ubuntu
|
# Install bot Debian_ubuntu
|
||||||
function install_debian() {
|
function install_debian() {
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y build-essential autoconf libtool pkg-config make wget git $(echo lib${PYTHON}-dev ${PYTHON}-venv)
|
sudo apt-get install -y gcc build-essential autoconf libtool pkg-config make wget git $(echo lib${PYTHON}-dev ${PYTHON}-venv)
|
||||||
|
install_talib
|
||||||
|
}
|
||||||
|
|
||||||
|
# Install bot RedHat_CentOS
|
||||||
|
function install_redhat() {
|
||||||
|
sudo yum update
|
||||||
|
sudo yum install -y gcc gcc-c++ make autoconf libtool pkg-config wget git $(echo ${PYTHON}-devel | sed 's/\.//g')
|
||||||
install_talib
|
install_talib
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -160,9 +163,7 @@ function update() {
|
|||||||
|
|
||||||
# Reset Develop or Stable branch
|
# Reset Develop or Stable branch
|
||||||
function reset() {
|
function reset() {
|
||||||
echo "----------------------------"
|
echo_block "Resetting branch and virtual env"
|
||||||
echo "Resetting branch and virtual env"
|
|
||||||
echo "----------------------------"
|
|
||||||
|
|
||||||
if [ "1" == $(git branch -vv |grep -cE "\* develop|\* stable") ]
|
if [ "1" == $(git branch -vv |grep -cE "\* develop|\* stable") ]
|
||||||
then
|
then
|
||||||
@ -200,48 +201,39 @@ function reset() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function config() {
|
function config() {
|
||||||
|
echo_block "Please use 'freqtrade new-config -c config.json' to generate a new configuration file."
|
||||||
echo "-------------------------"
|
|
||||||
echo "Please use 'freqtrade new-config -c config.json' to generate a new configuration file."
|
|
||||||
echo "-------------------------"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function install() {
|
function install() {
|
||||||
echo "-------------------------"
|
|
||||||
echo "Installing mandatory dependencies"
|
echo_block "Installing mandatory dependencies"
|
||||||
echo "-------------------------"
|
|
||||||
|
|
||||||
if [ "$(uname -s)" == "Darwin" ]
|
if [ "$(uname -s)" == "Darwin" ]; then
|
||||||
then
|
|
||||||
echo "macOS detected. Setup for this system in-progress"
|
echo "macOS detected. Setup for this system in-progress"
|
||||||
install_macos
|
install_macos
|
||||||
elif [ -x "$(command -v apt-get)" ]
|
elif [ -x "$(command -v apt-get)" ]; then
|
||||||
then
|
|
||||||
echo "Debian/Ubuntu detected. Setup for this system in-progress"
|
echo "Debian/Ubuntu detected. Setup for this system in-progress"
|
||||||
install_debian
|
install_debian
|
||||||
|
elif [ -x "$(command -v yum)" ]; then
|
||||||
|
echo "Red Hat/CentOS detected. Setup for this system in-progress"
|
||||||
|
install_redhat
|
||||||
else
|
else
|
||||||
echo "This script does not support your OS."
|
echo "This script does not support your OS."
|
||||||
echo "If you have Python3.6 or Python3.7, pip, virtualenv, ta-lib you can continue."
|
echo "If you have Python version 3.7 - 3.9, pip, virtualenv, ta-lib you can continue."
|
||||||
echo "Wait 10 seconds to continue the next install steps or use ctrl+c to interrupt this shell."
|
echo "Wait 10 seconds to continue the next install steps or use ctrl+c to interrupt this shell."
|
||||||
sleep 10
|
sleep 10
|
||||||
fi
|
fi
|
||||||
echo
|
echo
|
||||||
reset
|
reset
|
||||||
config
|
config
|
||||||
echo "-------------------------"
|
echo_block "Run the bot !"
|
||||||
echo "Run the bot !"
|
|
||||||
echo "-------------------------"
|
|
||||||
echo "You can now use the bot by executing 'source .env/bin/activate; freqtrade <subcommand>'."
|
echo "You can now use the bot by executing 'source .env/bin/activate; freqtrade <subcommand>'."
|
||||||
echo "You can see the list of available bot sub-commands by executing 'source .env/bin/activate; freqtrade --help'."
|
echo "You can see the list of available bot sub-commands by executing 'source .env/bin/activate; freqtrade --help'."
|
||||||
echo "You verify that freqtrade is installed successfully by running 'source .env/bin/activate; freqtrade --version'."
|
echo "You verify that freqtrade is installed successfully by running 'source .env/bin/activate; freqtrade --version'."
|
||||||
}
|
}
|
||||||
|
|
||||||
function plot() {
|
function plot() {
|
||||||
echo "
|
echo_block "Installing dependencies for Plotting scripts"
|
||||||
-----------------------------------------
|
|
||||||
Installing dependencies for Plotting scripts
|
|
||||||
-----------------------------------------
|
|
||||||
"
|
|
||||||
${PYTHON} -m pip install plotly --upgrade
|
${PYTHON} -m pip install plotly --upgrade
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user