Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update installation.rst - fixed typo on line 20 #1744

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/start/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading