Be more explicit about what's missing

This commit is contained in:
Matthias 2019-06-27 06:20:22 +02:00
parent 1b156e0f34
commit 3043a8d9c9
2 changed files with 4 additions and 1 deletions

View File

@ -18,6 +18,9 @@ You will need to create API Keys (Usually you get `key` and `secret`) from the E
Freqtrade provides a Linux/MacOS script to install all dependencies and help you to configure the bot.
!!! Note
Python3.6 or higher and the corresponding pip are assumed to be available. The install-script will warn and stop if that's not the case.
```bash
git clone git@github.com:freqtrade/freqtrade.git
cd freqtrade

View File

@ -4,7 +4,7 @@
function check_installed_pip() {
${PYTHON} -m pip > /dev/null
if [ $? -ne 0 ]; then
echo "pip not found. Please make sure that pip is available for ${PYTHON}."
echo "pip not found (called as '${PYTHON} -m pip'). Please make sure that pip is available for ${PYTHON}."
exit 1
fi
}