mirror of
https://github.com/wassname/blender_ipython.git
synced 2026-09-07 16:40:15 +08:00
10 lines
268 B
Python
Executable File
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()
|