From 2226f6781fd6070ba80e16add3df3689fbc96233 Mon Sep 17 00:00:00 2001 From: sobeit2020 <75637352+sobeit2020@users.noreply.github.com> Date: Sun, 24 Jan 2021 21:31:36 +0000 Subject: [PATCH] Update installation.md --- docs/installation.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index b1a730666..c99f505db 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -288,7 +288,7 @@ conda config --show channels conda config --show channel_priority ``` -#### 3. Freqtrade Instalation +#### 3. Freqtrade Download Download and install freqtrade. @@ -300,7 +300,7 @@ git clone https://github.com/freqtrade/freqtrade.git cd freqtrade ``` -#### 4. Freqtrade Conda Environment +#### 4. Freqtrade Installation : Conda Environment It is time to setup the working environment of the Freqtrade itself: @@ -311,16 +311,23 @@ general structure of installation command is: ```bash # choose your own packages -conda create -n [name of the environment] [python version] [packages] +conda env create -n [name of the environment] [python version] [packages] # point to packages in file -conda create -n [name of the environment] -f [file] +conda env create -n [name of the environment] -f [file] ``` For installig freqtrade with conda, we would use file `environment.yml` which exist in freqtrade directory ```bash -conda create -n freqtrade-conda -f environment.yml +conda env create -n freqtrade-conda -f environment.yml +``` + +#### 4. Install python dependencies + +```bash +python3 -m pip install --upgrade pip +python3 -m pip install -e . ``` Further read on the topic: