Python: Difference between revisions

From Wiki
No edit summary
Line 4: Line 4:
= Jupyter Notebook =
= Jupyter Notebook =
* [[Python/Jupyter Notebook]]
* [[Python/Jupyter Notebook]]
* autostart from rc.local
<blockquote>
<pre>
/usr/local/bin/jupyter-notebook --config=/home/pi/.jupyter/jupyter_notebook_config.py --allow-root
</pre>
</blockquote>
* insecure access without token/password (/home/pi/.jupyter/jupyter_notebook_config.py)
<blockquote>
<pre>
c.NotebookApp.ip = '*'
c.NotebookApp.notebook_dir = '/srv/Python'
c.NotebookApp.open_browser = False
c.NotebookApp.password = ''
c.NotebookApp.token = ''
</pre>
</blockquote>


= Links =
= Links =

Revision as of 13:40, 20 November 2017