3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 03:33:50 +01:00
dft_tools/shells/ipytriqs_shell.notebook.nopypath.bash.in
Olivier Parcollet f2c7d449cc First commit : triqs libs version 1.0 alpha1
for earlier commits, see TRIQS0.x repository.
2013-07-17 19:24:07 +02:00

13 lines
401 B
Bash
Executable File

#!/bin/bash
@PYTHON_INTERPRETER@ -c "
import sys
sys.argv.insert(1, 'notebook')
sys.argv.insert(2, '--pylab=inline')
sys.argv.insert(3, '--MappingKernelManager.time_to_dead=3600')
import IPython
assert IPython.__version__ >= '0.11' , 'ipython version too low: need 0.12 or higher for the notebook'
from IPython.frontend.terminal.ipapp import launch_new_instance
sys.exit(launch_new_instance())
" $@