annotate jupyter_c_kernel/__main__.py @ 29:ee3ac764f5f0

Merge pull request #6 from ryukinix/install-sh Add alternative installation using wget and sh
author Brendan Rius <brendan.rius@gmail.com>
date Fri, 29 Apr 2016 10:41:04 +0100
parents c_kernel/__main__.py@ca8f6aa0f6ed c_kernel/__main__.py@696cc0775abb
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
50ea00cf5896 Initial commit
Brendan Rius <brendan@omixy.com>
parents:
diff changeset
1 from ipykernel.kernelapp import IPKernelApp
50ea00cf5896 Initial commit
Brendan Rius <brendan@omixy.com>
parents:
diff changeset
2 from .kernel import CKernel
50ea00cf5896 Initial commit
Brendan Rius <brendan@omixy.com>
parents:
diff changeset
3 IPKernelApp.launch_instance(kernel_class=CKernel)