
TU Cookbook Template¶
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://
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:
Clone the
https://gitlab.tuwien.ac.at/cookbooks/public/<YOUR COOKBOOK>repository:git clone https://gitlab.tuwien.ac.at/cookbooks/<YOUR COOKBOOK>Move into the
<YOUR COOKBOOK>directorycd <YOUR COOKBOOK>Create and activate your conda environment from the
environment.ymlfileconda env create -f environment.yml conda activate tucookbooksMove into the
notebooksdirectory and start up Jupyterlabcd notebooks/ jupyter lab
Docker¶
When available simply run docker compose to start a Jupyter Lab instance.
Start Jupyter Lab from a Docker container:
docker compose upCopy Jupyter Lab URL to web browser:
Stop and remove the container
Stop Docker container with
CTRL + CRemove container:
docker compose down