diff --git a/scripts/console.sh b/scripts/console.sh new file mode 100755 index 0000000..1a60962 --- /dev/null +++ b/scripts/console.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env python +# This is needed instead of running ipython directly, +# for the same issue as described here: +# https://github.com/ipython/ipython/issues/11730 +import gevent.monkey +gevent.monkey.patch_all() + +import IPython +IPython.start_ipython()