安装anconda3 访问jupyter notebook

网上的流程已经很清晰了,可以参照博客:

https://blog.csdn.net/simple_the_best/article/details/77005400

 

就是启动的时候我用的是这样的命令为:

jupyter notebook --ip=0.0.0.0 --no-browser

 

另外我不小心把 

/home/hadoop/.jupyter/jupyter_notebook_config.json 文件给删除了。

只要把hash秘钥重新填充就行了 秘钥按照上面那个博客链接生成就行,

 

{
  "NotebookApp": {
    "password": "sha1:2136dc4a8b90:1d894f851e6571f200d5806644fc1b9c938aaeba"
  }
}

复写一下就OK 不会报错 

[E 15:11:37.720 NotebookApp] Exception while loading config file /home/hadoop/.jupyter/jupyter_notebook_config.json

 

 

在Jupyter notebook中添加 conda 环境步骤如下:

python2 和 python3 环境

 

 

1、创建conda 环境

conda create -n py3 python=3.6 

2、 激活conda环境

source activate py3

3、安装 ipykernel

pip install ipykernel

4、将环境写入notebook的kernel中

python -m ipykernel install --user --name py3--display-name py3

5、打开Jupyter notebook

你可能感兴趣的:(个人日记)