Dear members of the Jupyter group,
I am using Jupyterhub on a linux server and have the following issue with when trying to access a path outside my home folder.
If I try to change my directory to the RAID (mounted at /data/...) I always get the error that permission is denied. The strange thing is that I can access the same path from RStudio and the terminal without any error:
Jupyterhub (with python3 kernel):
import os
os.chdir("/data/projects/Students/Master/")
---------------------------------------------------------------------------
PermissionError Traceback (most recent call last)
<ipython-input-9-28cd65e1ac4e> in <module>
1 import os
----> 2 os.chdir("/data/projects/Students/Master/")
PermissionError: [Errno 13] Permission denied: '/data/projects/Students/Master/'
In R:
> setwd("/data/projects/Students/Master/")
> list.dirs()
[1] "." "./APV"
Does anyone have an idea, what the reason is?
Thank you!
Lukas