mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
update
Signed-off-by: Clarence Ng <clarence.wyng@gmail.com>
This commit is contained in:
parent
0b37fcee1c
commit
dff0385ed5
1 changed files with 1 additions and 1 deletions
|
@ -471,7 +471,7 @@ A list of commands to run to set up nodes. These commands will always run on the
|
|||
- echo 'export PATH="$HOME/anaconda3/envs/tensorflow_p36/bin:$PATH"' >> ~/.bashrc
|
||||
- pip install -U https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-3.0.0.dev0-cp36-cp36m-manylinux2014_x86_64.whl
|
||||
|
||||
- Setup commands should ideally be *idempotent* (i.e., can be run multiple times without changing the result); this enables Ray to safely update nodes after they have been created. You can usually make commands idempotent with small modifications, e.g. ``git clone foo`` can be rewritten as ``test -e foo || git clone foo`` which checks if the repo is already cloned first.
|
||||
- Setup commands should ideally be *idempotent* (i.e., can be run multiple times without changing the result); this allows Ray to safely update nodes after they have been created. You can usually make commands idempotent with small modifications, e.g. ``git clone foo`` can be rewritten as ``test -e foo || git clone foo`` which checks if the repo is already cloned first.
|
||||
|
||||
- Setup commands are run sequentially but separately. For example, if you are using anaconda, you need to run ``conda activate env && pip install -U ray`` because splitting the command into two setup commands will not work.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue