First Blog Using IPython Notebook

  1. Download and install Anaconda (this gives you ipython and a nice enviroment)

  2. Install Nikola

  3. Follow the tutorial

Helpful Links:

http://www.damian.oquanta.info/posts/ipython-plugin-for-nikola-updated.html

https://shankarmsy.github.io/posts/blogging-with-the-awesome-nikola-ipython-and-github.html

In [1]:
# http://nbviewer.jupyter.org/gist/theandygross/4544012
import sys
print('Python: {}'.format(sys.version))
Python: 3.6.0 |Anaconda custom (x86_64)| (default, Dec 23 2016, 13:19:00) 
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)]
In [2]:
print ('This is really exciting')
This is really exciting
In [3]:
print (12)
12
In [ ]:
print ('hello, notebook blog :)')