mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 03:33:50 +01:00
13 lines
401 B
Bash
13 lines
401 B
Bash
|
#!/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())
|
||
|
" $@
|