Update doc (#9580)

* update aiohttp in docs

* update doc
This commit is contained in:
Kai Huang 2023-12-01 15:40:37 +08:00 committed by GitHub
parent 5de92090b3
commit f7e596d85a
3 changed files with 4 additions and 2 deletions

View file

@ -79,7 +79,7 @@ pip install --pre --upgrade bigdl-orca[ray] # For the latest nightly build vers
``` ```
Note that with the extra key of [ray], `pip` will automatically install the additional dependencies for RayOnSpark, Note that with the extra key of [ray], `pip` will automatically install the additional dependencies for RayOnSpark,
including `ray[default]==1.9.2`, `aiohttp==3.8.1`, `async-timeout==4.0.1`, `aioredis==1.3.1`, `hiredis==2.0.0`, `prometheus-client==0.11.0`, `psutil`, `setproctitle`. including `ray[default]==1.9.2`, `aiohttp==3.9.0`, `async-timeout==4.0.1`, `aioredis==1.3.1`, `hiredis==2.0.0`, `prometheus-client==0.11.0`, `psutil`, `setproctitle`.
### To additionally use AutoML ### To additionally use AutoML

View file

@ -14,7 +14,7 @@ _**Note:** BigDL has been tested on Ray 1.9.2 and you are highly recommended to
We recommend using [conda](https://docs.conda.io/projects/conda/en/latest/user-guide/install/) to prepare the Python environment. We recommend using [conda](https://docs.conda.io/projects/conda/en/latest/user-guide/install/) to prepare the Python environment.
When installing bigdl-orca with pip, you can specify the extras key `[ray]` to install the additional dependencies When installing bigdl-orca with pip, you can specify the extras key `[ray]` to install the additional dependencies
for running Ray (i.e. `ray[default]==1.9.2`, `aiohttp==3.8.1`, `async-timeout==4.0.1`, `aioredis==1.3.1`, `hiredis==2.0.0`, `prometheus-client==0.11.0`, `psutil`, `setproctitle`): for running Ray (i.e. `ray[default]==1.9.2`, `aiohttp==3.9.0`, `async-timeout==4.0.1`, `aioredis==1.3.1`, `hiredis==2.0.0`, `prometheus-client==0.11.0`, `psutil`, `setproctitle`):
```bash ```bash
conda create -n py37 python=3.7 # "py37" is conda environment name, you can use any name you like. conda create -n py37 python=3.7 # "py37" is conda environment name, you can use any name you like.

View file

@ -316,6 +316,8 @@ If you prefer to use `spark-submit` instead of `bigdl-submit`, please follow the
``` ```
Note that you are recommended **NOT** to install BigDL Orca with pip install command in the conda environment if you use spark-submit to avoid possible conflicts. Note that you are recommended **NOT** to install BigDL Orca with pip install command in the conda environment if you use spark-submit to avoid possible conflicts.
If you are using `requirements_ray.txt`, you need to additionally install `ray[default]` with version 1.9.2 in your environment.
2. Pack the current activate conda environment to an archive: 2. Pack the current activate conda environment to an archive:
```bash ```bash
conda pack -o environment.tar.gz conda pack -o environment.tar.gz