Quick Start
Here is the guide to help setup ELBO environment in your local machine.
Get your API keys
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an HTTP Authentication error.
Sign up for an account (with a 14 day trial period). You can get the API key from your here at any time on the website.
Setup your Virtual Environment
It's better to run Python in a virtual environment or use conda. To install your virtual environment run:
pip3 install virtualenv virtualenvwrapperAnd create an environment using:
virtualenv -p python3 .venvor if virtualenv is not in path:
~/Library/Python/3.9/bin/virtualenv -p python3 .venvThis creates a virtual Python environment in the .venv folder. To activate this environment use the command:
. .venv/bin/activateOr the following if you are using the fish shell:
. .venv/bin/activate.fishInstall the library
The best way to interact with our API is to use our elbo library. You can install it using the command line below:
Login to ELBO
Use the command line tool to login.
This will prompt you to enter your token. The token can be obtained by logging into the ELBO welcome page.
Make your first task submission
Try out one of the sample ML submission from our examples Github repository. First clone the repository:
Submit the sample task:
Here is a sample output of the command that prompts with a list of compute options from our providers:
Thats it! 🥳 Monitor your task progression using elbo show <task_id>.
Last updated
Was this helpful?
