Reviewed virtual installation process
This commit is contained in:
parent
43dda9c9cf
commit
d3e2baf4ae
16
README.md
16
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).
|
`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).
|
||||||
|
|
||||||
```
|
```bash
|
||||||
$ cd freqtrade/
|
$ mkdir freqtrade && cd freqtrade/
|
||||||
# copy example config. Dont forget to insert your api keys
|
# 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
|
$ cp config.json.example config.json
|
||||||
$ python -m venv .env
|
# Install requirements
|
||||||
$ source .env/bin/activate
|
|
||||||
$ pip install -r requirements.txt
|
$ pip install -r requirements.txt
|
||||||
|
# Install Freqtrade
|
||||||
$ pip install -e .
|
$ pip install -e .
|
||||||
|
# Run Freqtrade
|
||||||
$ ./freqtrade/main.py
|
$ ./freqtrade/main.py
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user