Find here the course material for the Python Crash Course (24th and 25th February, 3rd and 4th March 2025) offered in the Transferable Skills programme (course description) of the University of Basel.
Do you want to immediately dive into the course material? Check out Renku lab and click "Launch" to run the notebooks without any installation!
- Friday, 21 February: Upload notebooks of first week.
- Monday, 24 February: Upload course notebook adjustments and solutions after the first day.
- Tuesday, 25 February: Upload course notebook adjustments and solutions after the second day.
- Friday, 28 February: Upload notebook of second week.
- Monday, 3 March: Upload course notebook adjustments and solutions after the third day.
- Wednesday, 5 March: Final upload of all the course material.
In order to set up Python on your own machine, I recommend using Anaconda. Follow the steps outlined in my YouTube instruction video to install Python and getting started with the Jupyter notebooks.
If you are more advanced and/or Anaconda is already set up on your machine, open up a terminal and create a new environment with the necessary libraries through
conda env create -f environment.yml
activate the environment via
conda activate pythonCC
and start Jupyter lab with
jupyter lab