Update installation.md

This commit is contained in:
sobeit2020 2021-01-24 21:31:36 +00:00 committed by GitHub
parent 2c2a33b2e8
commit 2226f6781f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 5 deletions

View File

@ -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: