Get started with Anyscale
This page provides an overview of getting started on Anyscale.
1. Join Anyscale
- Contact your organization's admin and request an invitation.
- Use the email invitation link to register as a user in the organization.
If you are the first Anyscale user on your team and doesn't have an Anyscale organization, follow Get started for admins to create and set up your Anyscale organization.
2. Try it out
Once you've joined an organization and logged in, follow the quickstart tutorial in the console to learn about the platform.
3. Set up your environment (optional)
To programmatically interact with Anyscale outside the console and from your terminal, you need to install the Anyscale CLI.
- AWS
- GCP
Step 1: Install the Anyscale CLI and Python client package
pip install -U anyscale
Step 2: Authenticate the CLI
To access Anyscale's services, you need to obtain a token that verifies
your identity. Running the following command fetches and updates the
token in the local credential file ~/.anyscale/credentials.json
:
anyscale login
You can also manually generate your API token through the
console, and set it in the
ANYSCALE_CLI_TOKEN
environment
variable.
Step 1: Install the Anyscale CLI and Python client package
pip install -U "anyscale[gcp]"
Step 2: Authenticate the CLI
To access Anyscale's services, you need to obtain a token that verifies your
identity. Running the following command fetches and updates the token in the
local credential file ~/.anyscale/credentials.json
:
anyscale login
You can also manually generate your API token through the console, and set it in the ANYSCALE_CLI_TOKEN
environment variable.