Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Latest commit

 

History

History
57 lines (42 loc) · 1.91 KB

File metadata and controls

57 lines (42 loc) · 1.91 KB

A Guided Tour of Ray Core

An introductory tutorial about leveraging Ray core features for distributed patterns.

Note: these examples have been tested using Python 3.7+ on:

  • Ubuntu 18.04 LTS
  • macOS 10.13

Getting Started

To get started use git to clone this public repository:

git clone https://github.com/DerwenAI/ray_tutorial.git
cd ray_tutorial

Set up a local virtual environment and activate it:

python3 -m venv venv
source venv/bin/activate

Then install the required dependencies:

pip install -U pip
pip install -r requirements.txt

Launch the JupyterLab environment to run examples in this repo:

jupyter-lab

Then browse to http://localhost:8888/lab

Outline

Recommended Reading