linux pip3.6 下安装 jupyter-notebook

安装python

apt install software-properties-common

add-apt-repository ppa:jonathonf/python-3.6
apt-get update

apt-get install python3.6-dev
wget https://bootstrap.pypa.io/get-pip.py

python3.6 get-pip.py

安装jupyter

pip install --upgrade pip //更新pip
pip install jupyter
vim /root/.jupyter/jupyter_notebook_config.py
c.NotebookApp.allow_root =True

https://www.cnblogs.com/yangxiaolan/p/5778305.html
c.NotebookApp.ip=‘0.0.0.0’
c.NotebookApp.password = u’sha1:b2fd88aa82bb:a554554d9f4ae1f55429a6d0783dcc9cb33d8d88’
c.NotebookApp.open_browser = False
c.NotebookApp.port =8888

jupyter-notebook

猜你喜欢

转载自blog.csdn.net/weixin_41836744/article/details/89599576