Update installation.md
This commit is contained in:
parent
2c2a33b2e8
commit
2226f6781f
@ -288,7 +288,7 @@ conda config --show channels
|
|||||||
conda config --show channel_priority
|
conda config --show channel_priority
|
||||||
```
|
```
|
||||||
|
|
||||||
#### 3. Freqtrade Instalation
|
#### 3. Freqtrade Download
|
||||||
|
|
||||||
Download and install freqtrade.
|
Download and install freqtrade.
|
||||||
|
|
||||||
@ -300,7 +300,7 @@ git clone https://github.com/freqtrade/freqtrade.git
|
|||||||
cd freqtrade
|
cd freqtrade
|
||||||
```
|
```
|
||||||
|
|
||||||
#### 4. Freqtrade Conda Environment
|
#### 4. Freqtrade Installation : Conda Environment
|
||||||
|
|
||||||
|
|
||||||
It is time to setup the working environment of the Freqtrade itself:
|
It is time to setup the working environment of the Freqtrade itself:
|
||||||
@ -311,16 +311,23 @@ general structure of installation command is:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# choose your own packages
|
# 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
|
# 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
|
For installig freqtrade with conda, we would use file `environment.yml` which exist in freqtrade directory
|
||||||
|
|
||||||
```bash
|
```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:
|
Further read on the topic:
|
||||||
|
Loading…
Reference in New Issue
Block a user