1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-04 03:21:00 +08:00

Update readme

This commit is contained in:
Jactus
2021-02-03 14:19:16 +08:00
committed by you-n-g
parent d87d29aca9
commit 1e2e02368c

View File

@@ -82,10 +82,13 @@ This table demonstrates the supported Python version of `Qlib`:
2. For Python 3.9, `Qlib` supports running workflows such as training models, doing backtest and plot most of the related figures (those included in [notebook](examples/workflow_by_code.ipynb)). However, plotting for the *model performance* is not supported for now and we will fix this when the dependent packages are upgraded in the future.
### Install with pip
**Note**: Due to latest numpy release: version 1.20.0, unexpected errors will occur if you install or run Qlib with `numpy==1.20.0`. We recommend to use lower version of `numpy==1.19.5` for now and we will fix this incompatibility in the neaar future.
Users can easily install ``Qlib`` by pip according to the following command.
```bash
pip install pyqlib
pip install numpy==1.19.5
pip install pyqlib --ignore-installed numpy
```
**Note**: pip will install the latest stable qlib. However, the main branch of qlib is in active development. If you want to test the latest scripts or functions in the main branch. Please install qlib with the methods below.