install-core-prerelease-dependencies.sh 252 B

123456789
  1. #!/usr/bin/env bash
  2. set -e
  3. # install all unbounded dependencies in setup.py for ray core
  4. for dependency in attrs jsonschema aiosignal frozenlist requests grpcio protobuf
  5. do
  6. python -m pip install -U --pre --upgrade-strategy=eager $dependency
  7. done