From 960ff36a445355742112e0d7d335e041fdd15a64 Mon Sep 17 00:00:00 2001 From: Akshay Gulabrao Date: Sat, 27 Jan 2024 17:13:15 -0500 Subject: [PATCH 1/2] Update installation.rst - fixed typo on line 20 So when you are installing it as of 1/27/2024, you actually need to run pip install qlib instead of pip install pyqlib to install the package. --- docs/start/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/start/installation.rst b/docs/start/installation.rst index 451fc0a426..2d6654231b 100644 --- a/docs/start/installation.rst +++ b/docs/start/installation.rst @@ -17,7 +17,7 @@ Users can easily install ``Qlib`` by pip according to the following command: .. code-block:: bash - pip install pyqlib + pip install qlib Also, Users can install ``Qlib`` by the source code according to the following steps: From 2dbcf84f4ea86a3ae9ad7eb66f91d024c4a87114 Mon Sep 17 00:00:00 2001 From: Akshay Gulabrao Date: Sun, 28 Jan 2024 14:10:18 -0500 Subject: [PATCH 2/2] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a25c29c117..7b3b1afd5c 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ This table demonstrates the supported Python version of `Qlib`: Users can easily install ``Qlib`` by pip according to the following command. ```bash - pip install pyqlib + pip install qlib ``` **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. @@ -159,8 +159,8 @@ Also, users can install the latest dev version ``Qlib`` by the source code accor * Before installing ``Qlib`` from source, users need to install some dependencies: ```bash - pip install numpy - pip install --upgrade cython + conda install numpy pandas matplotlib pyyaml hdf5 requests + conda install -c conda-forge liblapack lightgbm ``` * Clone the repository and install ``Qlib`` as follows.