Files
blender_ipython/blender_ipython_notebook.py
T
2014-11-21 00:27:42 +01:00

10 lines
268 B
Python
Executable File

#!/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()