Home > Article > Backend Development > Introduction to the basic usage of iPython and notevook
1 Ipython installation
pip install ipython
Start ipython and use ipython
Start notebook and use ipython notebook
Syntax: ipython profile create 08647226a7d78639d2928a500ec3fe69
e.g.:
# ipython Profile Create MyServer
# This will output the file location generated by the terminal at this time, please remember this location
c = get_config() # Kernel config c.IPKernelApp.pylab = 'inline' # if you want plotting support always # Notebook config c.NotebookApp.certfile = u'/home/XXX/.ipython/mycert.pem' ##认证的位置 c.NotebookApp.ip = '*' c.NotebookApp.open_browser = False c.NotebookApp.password = u'sha1:XXXX' ## 认证输出的sha值 # It's a good idea to put it on a known, fixed port c.NotebookApp.port = 9999### ###3.3 Restart ubuntu and start the ipython notebook server############ipython notebook --profile=nbserver############3.4 Remote connection to Ipython NoteBook# ########### Just open the local browser to access the remote noteBook address, remember the port number is 9999###############More basic usage of iPython and notevook Please pay attention to the PHP Chinese website for related articles! ###