I'm using Jupyterhub, and am running someone else's code that uses pytorch
. They include it via import torch
, but I get the error "No module named 'torch'". I installed pytorch
locally with conda
, but still get the same error in Jupyterhub.
What I Want To Know:
For modules like pytorch that aren't part of Jupyterhub out of the box, how do you include them? Do you do it by installing them locally like I did? If so, what should I do differently?