I have a jupyterhub running over a kubernetes cluster with kubespawner. As I understand it, kubespawner is, via kubernetes, spinning up dockers on my cluster that have their own python environment and storage area.
For some user, I am attempting to import rpy2 (or whatever, it's not important), and the package is not installed.
My questions:
Where do these dockers get their python environment (e.g. Is there a dockerfile I can edit somewhere)?
How to I get rpy2 installed for just that one docker session?
How do I get rpy2 installed for that user (if possible)?
How do I get rpy2 installed for everyone on the hub?