The following steps are required to finish the VirtualBox setup for the workshop.
In the virtual box most things are already set up. So let's us clone the tutorials
git clone https://github.com/mayrmt/UKACM_GACM_Tutorial_4C_QUEENS.gitThe tutorials can now be found in /home/participant/UKACM_GACM_Tutorial_4C_QUEENS.
For the QUEENS tutorials, we need to create a Python environment with QUEENS installed in it.
Create a conda environment using:
conda create -n queens python==3.11Now let's activate the enviroment by:
conda activate queensAfterwards navigate to the QUEENS source
cd /home/participant/queensand install QUEENS via
pip install -e .We use Jupyter notebooks for the interactivate QUEENS tutorials. So let's install the required packages:
cd /home/participant/UKACM_GACM_Tutorial_4C_QUEENS
pip install -r additional_requirements.txtWe are now ready to go. Start Jupyter by
jupyter notebookThis should open a page in the web browser. Open the tutorials under
/home/participant/UKACM_GACM_Tutorial_4C_QUEENS/QUEENS/1-grid-iterator-rosenbrock/1-grid-iterator-rosenbrock.ipynb