我正在尝试在anaconda 发行版 的conda环境(我使用http://conda.pydata.org/docs/test-drive.html设置)中安装Jupyter支持Spark。为此,我正在尝试使用apache toree作为Jupyter Kernel。
这是我安装 Anaconda 后所做的:
conda create --name jupyter python=3
source activate jupyter
conda install jupyter
pip install --pre toree
jupyter toree install
一切正常,直到我到达最后一行。我明白了
PermissionError: [Errno 13] Permission denied: '/usr/local/share/jupyter'
这就引出了一个问题:它为什么还要查看那个目录?毕竟它应该留在环境中。因此我执行
jupyter --paths
并得到
config:
/home/user/.jupyter
~/anaconda2/envs/jupyter/etc/jupyter
/usr/local/etc/jupyter
/etc/jupyter
data:
/home/user/.local/share/jupyter
~/anaconda2/envs/jupyter/share/jupyter
/usr/local/share/jupyter
/usr/share/jupyter
runtime:
/run/user/1000/jupyter
我不太确定发生了什么以及如何继续让所有东西都在 conda 环境“jupyter”中运行(如果可能的话)。