initial commit

This commit is contained in:
Mathias Panzenböck
2014-11-21 00:27:42 +01:00
commit 58e11e4efe
3 changed files with 38 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/python3
import sys
from os.path import abspath, dirname, join as pathjoin
from IPython.frontend.html.notebook.notebookapp import launch_new_instance
sys.executable = pathjoin(dirname(abspath(__file__)), 'blender_ipython_kernel.py')
launch_new_instance()