I am using google cloud platform datalab and I have the following "install_sw" notebook.
%%bash
apt-get update
apt-get -y install --allow-unauthenticated libsndfile1 librosa
and
!pip install librosa soundfile google-cloud-storage
Everytime I restart work on my notebooks, I have to run the install software notebook before I work on my regular notebook.
I tried to ssh to the compute instance and then connect to the docker container using the docker exec command. Once I am in the docker container I tried to apt-get install and pip install and the will install, but they do not change the notebook environment.
I do not how to configure dockers. Do I need to do something at the docker level to get this to work?