### `.bashrc` ``` # Include local bin path with Python packages. export PATH=$PATH:~/.local/bin # Make sure that all modules you need are automatically loaded. module load new module load python/3.4.3 ``` ### Dependencies ``` $ pip install --user ipython[kernel] ``` ### Remote IKernel ``` $ remote_ikernel manage --add \ --kernel_cmd="ipython kernel -f {connection_file}" \ --name="Euler" --cpus=1 --interface=lsf --tunnel-hosts euler.ethz.ch \ --verbose --workdir /cluster/home/${USER} \ --remote-launch-args "-R light -W 00:30" \ --reverse --reverse-job-connect "bjob_connect {jobid}" ```