Weekly exercices
Exercitses assigments and solutions are in jupyter notebooks.
I was solving exercises with python 3.7. All used packages are specified in requiriments.txt
.
- python >=3.7
- python venv/virtualenv package for creating virtual enviroment
- python packages specified in
requiriments.txt
pip-tools
package for creatingrequirements.txt
- Creating and activating python virtual enviroment
$ python -m virtualenv venv # python -m venv venv
$ source venv/bin/activate
- Installing python packages and ipykernel for jupyter notebook
[venv]$ pip install -r requiriments.txt
[venv]$ python -m ipykernel install --user --name inf367-exercises --display-name "INF367 Exercises"
[venv]$ jupyter notebook