Getting Started
Introduction
Here are the ways that you can get setup to work with this tutorial repository.
Use Binder
The first option is to user Binder! Simply click on the link below.
Use VSCode's Dev Containers
Another way you can interact with the notebooks is to use VSCode's development containers.
Fire up VSCode, and in the command palette,
search for Remote Containers: Open Repository in Container
,
and then paste the URL to this repository in there.
Get Setup Manually
To get setup manually:
- Clone the repository locally.
cd
to the repository.- Install the environment:
conda env create -f environment.yml
- Install the Jupyter kernel:
python -m ipykernel install --user --name datatest
- Run Jupyterlab:
jupyter lab
Are you ready? Head over to the next section to continue learning more!