Updated Windows installation doc, refined logging

This commit is contained in:
simwai
2024-05-30 10:28:53 +02:00
parent 2831318a95
commit c9d67999ee
2 changed files with 19 additions and 5 deletions

View File

@@ -5,6 +5,20 @@ We **strongly** recommend that Windows users use [Docker](docker_quickstart.md)
If that is not possible, try using the Windows Linux subsystem (WSL) - for which the Ubuntu instructions should work.
Otherwise, please follow the instructions below.
## Install freqtrade automatically
### Using Invoke-WebRequest
```powershell
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/freqtrade/freqtrade/stable/setup.ps1" -UseBasicParsing | Invoke-Expression
```
### Or using curl
```powershell
curl -sSL "https://raw.githubusercontent.com/freqtrade/freqtrade/stable/setup.ps1" | powershell -c -
```
## Install freqtrade manually
!!! Note "64bit Python version"