https://github.com/dongweiming/divingintoipynb
Diving into ipython notebook
https://github.com/dongweiming/divingintoipynb
Last synced: 3 months ago
JSON representation
Diving into ipython notebook
- Host: GitHub
- URL: https://github.com/dongweiming/divingintoipynb
- Owner: dongweiming
- License: mit
- Created: 2015-01-07T02:33:44.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-24T10:30:37.000Z (over 8 years ago)
- Last Synced: 2025-02-28T22:48:43.171Z (4 months ago)
- Language: JavaScript
- Size: 14.6 MB
- Stars: 24
- Watchers: 7
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
divingintoipynb
===============Diving into ipython notebook
Create ipython profile
---ipython profile create double11
openssl genrsa -des3 -out mycert.key 2048
openssl rsa -in mycert.key -out mycert.key
openssl req -new -key mycert.key -out mycert.csr
openssl x509 -req -days 365 -in mycert.csr -signkey mycert.key -out mycert.crtIn [1]: from IPython.lib import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'sha1:9bb2d9f28625:c294b0ee5b13fd0ec26f19a0e4e52afe6bfd7561'e ~/.ipython/profile_double11/ipython_notebook_config.py
c.IPKernerlApp.pylab = 'inline'
c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.open_browser = False
c.NotebookApp.password = u'sha1:9bb2d9f28625:c294b0ee5b13fd0ec26f19a0e4e52afe6bfd7561'
c.NotebookApp.port = 9999c.NotebookApp.certfile = u'/Users/dongweiming/.ipython/profile_double11/security/mycert.crt'
c.NotebookApp.keyfile = u'/Users/dongweiming/.ipython/profile_double11/security/mycert.key'mkdir ~/.ipython/profile_double11/static/custom -p
touch ~/.ipython/profile_double11/static/custom/custom.css