Follow the intro slides here.
Launch an online notebook environment using
You need an internet connection but you will not have to install any package locally.
The tutorials will require the following packages:
- python
- jupyter
- pandas
- matplotlib
- seaborn
- scikit-learn >= 1.2.0
We provide both requirements.txt
and environment.yml
to install packages.
You can install the packages using pip
:
$ pip install -r requirements.txt
You can create an evaluation-tutorial
conda environment executing:
$ conda env create -f environment.yml
and later activate the environment:
$ conda activate evaluation-tutorial
You might also only update your current environment using:
$ conda env update --prefix ./env --file environment.yml --prune