Support python3.8 virtualenvs and remove config generation via SED

This commit is contained in:
Matthias 2020-02-01 14:59:14 +01:00
parent 12317b1c53
commit 628b06927c
1 changed files with 9 additions and 20 deletions

View File

@ -17,6 +17,14 @@ function check_installed_python() {
exit 2
fi
which python3.8
if [ $? -eq 0 ]; then
echo "using Python 3.8"
PYTHON=python3.8
check_installed_pip
return
fi
which python3.7
if [ $? -eq 0 ]; then
echo "using Python 3.7"
@ -215,27 +223,8 @@ function config_generator() {
function config() {
echo "-------------------------"
echo "Generating config file"
echo "Please use freqtrade new-config -c config.json to generate a new configuration file."
echo "-------------------------"
if [ -f config.json ]
then
read -p "A config file already exist, do you want to override it [y/N]? "
if [[ $REPLY =~ ^[Yy]$ ]]
then
config_generator
else
echo "Configuration of config.json ignored."
fi
else
config_generator
fi
echo
echo "-------------------------"
echo "Config file generated"
echo "-------------------------"
echo "Edit ./config.json to modify Pair and other configurations."
echo
}
function install() {