15 lines
522 B
Plaintext
Executable File
15 lines
522 B
Plaintext
Executable File
#/bin/bash
|
|
PS1=$PS1"\[\e]2;eco_dev - Bernina \a\]"
|
|
source anaconda_env
|
|
export PYTHONPATH=$PYTHONPATH:/sf/bernina/config/src/python/devel
|
|
ipython --pylab --no-banner -c "\
|
|
print(' ___ _______\n / -_) __/ _ \ \n Experiment Control \__/\__/\___/ \n\n');\
|
|
import h5py;\
|
|
h5py.enable_ipython_completer();\
|
|
import IPython.utils as _ipy_utils;\
|
|
_ipy_utils.terminal.set_term_title('eco_dev Bernina');\
|
|
from eco.instruments import bernina;\
|
|
from eco.instruments.bernina import *;\
|
|
" -i
|
|
|