Python

From Wiki

Information

Jupyter Notebook

  • autostart from rc.local
/usr/local/bin/jupyter-notebook --config=/home/pi/.jupyter/jupyter_notebook_config.py --allow-root


  • insecure access without token/password (/home/pi/.jupyter/jupyter_notebook_config.py)
c.NotebookApp.ip = '*'
c.NotebookApp.notebook_dir = '/srv/Python'
c.NotebookApp.open_browser = False
c.NotebookApp.password = ''
c.NotebookApp.token = ''

Links

Downloads

python for beginners

pip for python3

  • apt-get install python3-setuptools
  • easy_install3 pip
  • pip-3.2 install <package>

mysql for python3

  • pymysql

mouse control

Links