Kay Kayyy
10/01/2021, 9:27 PMPermissionError: [Errno 13] Permission denied: '/data/cal_housing.tgz'
where is that dir? it's not on the local machineRick Lamers
/data
dir is always mounted in containers running user code. On the host it lives in orchest/userdir/data
. You can check the permissions of that folder.Kay Kayyy
10/01/2021, 9:32 PMchmod -R 777 data
and it fixed.
who is the user your service is running as? i.e output of whoami
?Rick Lamers
jovyan
which can escalate to root user using sudo
(inside the container).!whoami
in the notebook cellKay Kayyy
10/01/2021, 9:38 PM