Adding missing python dependencies
Created by: nrichart
I added packages need for the already activated packages
They where found this way
$ module load gcc python
$ pip3 list --format json | jq '.[].name | sub("-";"_"; "g")' | xargs -I '{}' python -c "print(\"{}\"); import {}"
It is linked to #27