In this Repository you can find Jupyter-Notebooks that you should work on together as Pair-Programmers.
The notebooks contain repetitions from the preparation repository, but also new content on the required Python basics.
Please work on the notebooks in the order listed below:
pyenv local 3.11.3
python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install jupyterlabOpen PowerShell CLI (as an administrator) :
pyenv local 3.11.3
python -m venv .venv
.venv\Scripts\Activate.ps1
python -m pip install --upgrade pip
pip install jupyterlabOpen Git-Bash CLI (as an administrator) :
pyenv local 3.11.3
python -m venv .venv
source .venv/Scripts/activate
python -m pip install --upgrade pip
pip install jupyterlabIf you encounter an error, try using the following command:
python.exe -m pip install --upgrade pip