Skip to content
Draft
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Also, users can install the latest dev version ``Qlib`` by the source code accor
* Clone the repository and install ``Qlib`` as follows.
```bash
git clone https://github.com/microsoft/qlib.git && cd qlib
pip install . # `pip install -e .[dev]` is recommended for development. check details in docs/developer/code_standard_and_dev_guide.rst
pip install . # `pip install -e '.[dev]'` is recommended for development. check details in docs/developer/code_standard_and_dev_guide.rst
```

**Tips**: If you fail to install `Qlib` or run the examples in your environment, comparing your steps and the [CI workflow](.github/workflows/test_qlib_from_source.yml) may help you find the problem.
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/code_standard_and_dev_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ When you submit a PR request, you can check whether your code passes the CI test

.. code-block:: bash

pip install -e .[dev]
pip install -e '.[dev]'
pre-commit install


Expand Down