Skip to content

Commit

Permalink
fix(nyz): downgrade pyecharts log level to warning and polish install…
Browse files Browse the repository at this point in the history
…ation doc (#838)
  • Loading branch information
PaParaZz1 committed Nov 27, 2024
1 parent 1158cd5 commit de9ada0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,6 @@ You can simply install DI-engine from PyPI with the following command:
pip install DI-engine
```

If you use Anaconda or Miniconda, you can install DI-engine from conda-forge through the following command:

```bash
conda install -c opendilab di-engine
```

For more information about installation, you can refer to [installation](https://di-engine-docs.readthedocs.io/en/latest/01_quickstart/installation.html).

And our dockerhub repo can be found [here](https://hub.docker.com/repository/docker/opendilab/ding),we prepare `base image` and `env image` with common RL environments.
Expand Down
2 changes: 1 addition & 1 deletion ding/utils/memory_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import pyecharts
except ImportError:
import logging
logging.error("Please install pyecharts first, you can install it by running 'pip install pyecharts'")
logging.warning("Please install pyecharts first, you can install it by running 'pip install pyecharts'")
pyecharts = None

MegaByte = 1024 * 1024
Expand Down

0 comments on commit de9ada0

Please sign in to comment.