conda install jupyter notebook
pip install jupyter notebook
jupyter notebook --generate-config
使用python中的passwd()创建密码,终端输入ipython打开ipython并输入:
In [1]: from notebook.auth import passwd In [2]: passwd() Enter password: ****** Verify password: ****** Out [2]: 'sha1:...'
复制Out [2] 显示的密码('sha1:...' 包括引号)。
新版notebook7 用这个:from jupyter_server.auth import passwd
vim ~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.allow_remote_access = True #允许远程连接 c.NotebookApp.ip='*' # 设置所有ip皆可访问 c.NotebookApp.password = u'sha:..' #之前复制的密码,或者输入的字符 c.NotebookApp.notebook_dir = '/usr/local/spark/mycode/Covid-19-Analysis' # 启动的默认目录 c.NotebookApp.open_browser = False # 禁止自动打开浏览器 c.NotebookApp.port =8888 #任意指定一个端口
终端输入:
jupyter notebook
或使用nohup后台运行 jupyter notebook:
nohup jupyter notebook >~/jupyter.log 2>&1 &
本地浏览器输入http://(服务器地址):(配置文件中设定的端口); 假设服务器地址为192.168.1.129,配置的端口为8888,这里的浏览器输入地址应为http://192.168.1.129:8888; 即可访问jupyter notebook。
jupyter nbconvert --to script 'getdata.ipynb'
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!