© 2018-2020, Anyscale. All Rights Reserved
Welcome to the Anyscale Academy tutorials on Ray, the system for scaling your applications from a laptop to a cluster.
This README tells you how to set up the tutorials, it provides a quick overview of its contents, and it recommends which tutorials to go through depending on your interests.
Tips:
- Anyscale is developing a free, hosted version of these tutorials. Contact us for more information.
- This is an early release of these tutorials. Please report any issues:
- GitHub issues
- The #tutorial channel on the Ray Slack
- If you are attending a live tutorial event, please follow the setup instructions provided well in advance.
- There is a Troubleshooting section at the end of this README and also in this Troubleshooting, Tips, and Tricks notebook.
Read one of the following setup sections, as appropriate, then jump to Launching the Tutorials.
There is nothing you need to setup, as the hosted environment will provide everything.
However, consider cloning or downloading a release of the tutorial notebooks and supporting software from the Academy repo, so you have a local copy of everything. The README
provides instruction for local setup, if desired.
Tip: Make sure you download the notebooks you modified during the session to save those changes.
WARNING: Ray does not currently run on Windows (we're close...). Contact Anyscale for a free hosted option.
If you are using MacOS or Linux, follow these instructions. Note that the setup commands can take a while to finish.
Clone the Academy GitHub repo or download the latest release.
Now install the dependencies using either Anaconda or pip
in your Python environment. We recommend using Anaconda.
If you need to install Anaconda, follow the instructions here. If you already have Anaconda installed, consider running conda upgrade --all
.
Run the following commands in the root directory of this project. First, use conda
to install the other dependencies, including Ray. Then activate the newly-created environment, named anyscale-academy
. Finally, run a provided script to install a graphing library extension in Jupyter Lab and perform other tasks.
conda env create -f environment.yml
conda activate anyscale-academy
tools/fix-jupyter.sh
Note that Python 3.7 is used. While Ray supports Python 3.8, some dependencies used in RLlib
(the Ray reinforcement library) are not yet supported for 3.8.
You can delete the environment later with the following command:
conda env remove --name anyscale-academy
If you don't use Anaconda, you'll have to install these prerequisites first:
- Python 3.6 or 3.7: While Ray supports Python 3.8, some dependencies used in
RLlib
(the Ray reinforcement library) and other dependencies are not yet supported for 3.8.- The version of Python that comes with your operating system is probably too old. Try
python --version
to see what you have. - Installation instructions are at python.org.
- The version of Python that comes with your operating system is probably too old. Try
- Pip: A recent version - consider upgrading if it's not the latest version.
- Installation instructions are at pip.pypa.io.
- Node.js: Required for some of the Jupyter Lab graphics extensions we use.
- Installation instructions are here.
Now run the following commands in the root directory of this project to complete the setup. First, run a pip
command to install the rest of the libraries required for these tutorials, including Ray. Then, run a provided script to install a graphing library extension in Jupyter Lab and perform other tasks.
pip install -r requirements.txt
tools/fix-jupyter.sh
The lessons will start a local Ray "cluster" (one node) on your machine. When you are finished with the tutorials, run the following command to shut down Ray:
ray stop
The previous steps installed Jupyter Lab, the notebook-based environment we'll use for all the lessons. To start run the following command in the project root directory:
jupyter lab
It should automatically open a browser window with the lab environment, but if not, the console output will show the URL you should use.
Tip: If you get an error that
jupyter
can't be found and you are using the Anaconda setup, make sure you activated theanyscale-academy
environment, as shown above.
Here is a recommended reading list, based on your interests:
You Are... | Best Tutorials |
---|---|
A developer who is new to Ray | First, Ray Crash Course, then Advanced Ray |
A developer who is experienced with Ray | Advanced Ray (alpha release) |
A developer or data scientist interested in Reinforcement Learning | Ray RLlib (alpha release) |
A developer or data scientist interested in Hyperparameter Tuning | Ray Tune (forthcoming) |
A developer or data scientist interested in accelerated model training with PyTorch | Ray SGD (forthcoming) |
A developer or data scientist interested in model serving | Ray Serve (forthcoming) |
See also the Troubleshooting, Tips, and Tricks notebook. For the details of the Ray API and the ML libraries, see the Ray Docs.
Note: Older Ray tutorials can be found in the this repo. They cover topics not yet covered by the Anyscale Academy.
See the Overview notebook for detailed, up-to-date descriptions for each tutorial and the lessons it contains.
- We use Python 3.7, because a dependency of
RLlib
,atari-py
, doesn't have a wheel available for Python 3.8 at this time.
When you first start Ray in a notebook (i.e., use ray.init()
), you may run into a few issues:
Suppose you get an error like this:
... INFO services.py:... -- Failed to connect to the redis server, retrying.
It probably means you are running a VPN on your machine. At this time, you can't use ray.init()
with a VPN running. You'll have to stop your VPN to run ray.init()
, then once it finishes, you can restart your VPN.
Suppose you successfully executed !../tools/start-ray.sh
in a notebook, but then when you run ray.init(adress='auto', ...)
you get the following error for some IP
address and PORT
:
ConnectionError: Error 61 connecting to IP:PORT. Connection refused.
If the output of ../tools/start-ray.sh
includes instructions for passing a Redis password, e.g., redis_password='5241590000000000'
, add this argument to the ray.init()
call and try again.
If that fails, it may be necessary to kill any old Redis processes that are running. On MacOS and Linux systems, use a terminal window and run the following command, shown with example output:
$ ps -ef | grep redis
501 36029 1 0 1:53PM ?? 0:00.03 .../lib/python3.7/site-packages/ray/core/src/ray/thirdparty/redis/src/redis-server *:48044
501 36030 1 0 1:53PM ?? 0:00.02 .../lib/python3.7/site-packages/ray/core/src/ray/thirdparty/redis/src/redis-server *:42902
$ kill 36029 36039
Then try again.
If ray.init()
worked (for example, you see a message like View the Ray dashboard at localhost:8265) and you're using a Mac, you may get several annoying dialogs asking you if you want to allow incoming connections for Python and/or Redis (used internally by Ray). Click "Accept" for each one and they shouldn't appear again during this tutorial. For security reasons, MacOS is complaining that it can't verify these executables have been properly signed. If you installed Python using Anaconda or other mechanism, then it probably isn't properly signed from the point of view of MacOS. To permanently fix this problem, see this StackExchange post.