From d3e2baf4ae785cdeb2c5899edb6738ce08293ac2 Mon Sep 17 00:00:00 2001 From: baudbox Date: Tue, 21 Nov 2017 13:49:54 +0000 Subject: [PATCH] Reviewed virtual installation process --- README.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 398056079..00dca6e99 100644 --- a/README.md +++ b/README.md @@ -74,14 +74,20 @@ Use your favorite AUR helper and install `python-freqtrade-git`. `develop` branch has often new features, but might also cause breaking changes. To use it, you are encouraged to join our [slack channel](https://join.slack.com/t/highfrequencybot/shared_invite/enQtMjQ5NTM0OTYzMzY3LWMxYzE3M2MxNDdjMGM3ZTYwNzFjMGIwZGRjNTc3ZGU3MGE3NzdmZGMwNmU3NDM5ZTNmM2Y3NjRiNzk4NmM4OGE). -``` -$ cd freqtrade/ -# copy example config. Dont forget to insert your api keys +```bash +$ mkdir freqtrade && cd freqtrade/ +# Create an isolated Python virtual environment +$ pip install virtualenv +$ virtualenv ./virtualenv --python=$(which python3) +# Activate the virtualenv +$ . virtualenv/bin/activate +# Copy example config. Dont forget to insert your api keys $ cp config.json.example config.json -$ python -m venv .env -$ source .env/bin/activate +# Install requirements $ pip install -r requirements.txt +# Install Freqtrade $ pip install -e . +# Run Freqtrade $ ./freqtrade/main.py ```