Python 3 is the default. This container uses the anaconda python distribution.
In [1]:
!which python
In [2]:
!python --version
In python 3 notebooks you get everything that is installed in the default environment.
This container is a "base" container, to further customise it you should create your own docker
container that inherits from this one and install things there.
To quickly try out a new package from the notebook simply run:
In [1]:
!conda install -y scikit-learn
In [2]:
# You now have scikit-learn
import sklearn