From 23665c7731846741070a958c16bd8f27501e4ecc Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 29 Sep 2019 10:25:47 +0200 Subject: [PATCH] Don't use main.py as entry point in documentation --- docs/installation.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 081d7e0cf..68348d4b0 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -257,14 +257,12 @@ As compiling from source on windows has heavy dependencies (requires a partial v ```cmd >cd \path\freqtrade-develop >python -m venv .env ->cd .env\Scripts ->activate.bat ->cd \path\freqtrade-develop +>.env\Scripts\activate.bat REM optionally install ta-lib from wheel REM >pip install TA_Lib‑0.4.17‑cp36‑cp36m‑win32.whl >pip install -r requirements.txt >pip install -e . ->python freqtrade\main.py +>freqtrade ``` > Thanks [Owdr](https://github.com/Owdr) for the commands. Source: [Issue #222](https://github.com/freqtrade/freqtrade/issues/222)