Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

TU Cookbook Template


TU Cookbook Template

nightly-build Binder

Introduce you book here.

Motivation

Motivation for developing this TU Cookbook.

Authors

TU Cookbook Development Team.

Structure

Discuss the structure of the Cookbook.

Running the Notebooks

Running on dataLAB JupyterHub

Go to the website dataLAB: https://hub.jaas.datalab.tuwien.ac.at

Running on dataLAB Binder

Running on Your Own Machine

Conda

If you are interested in running this material locally on your computer, you will need to follow this workflow:

  1. Clone the https://gitlab.tuwien.ac.at/cookbooks/public/<YOUR COOKBOOK> repository:

     git clone https://gitlab.tuwien.ac.at/cookbooks/<YOUR COOKBOOK>
  2. Move into the <YOUR COOKBOOK> directory

    cd <YOUR COOKBOOK>
  3. Create and activate your conda environment from the environment.yml file

    conda env create -f environment.yml
    conda activate tucookbooks
  4. Move into the notebooks directory and start up Jupyterlab

    cd notebooks/
    jupyter lab

Docker

When available simply run docker compose to start a Jupyter Lab instance.

  1. Start Jupyter Lab from a Docker container:

    docker compose up
  2. Copy Jupyter Lab URL to web browser:

Stop and remove the container

  1. Stop Docker container with CTRL + C

  2. Remove container:

    docker compose down