From ef59c4bb143d44c5cb2c311420acc7438c8dc661 Mon Sep 17 00:00:00 2001 From: Oleksii Mandrychenko Date: Wed, 7 Oct 2015 13:18:16 +0100 Subject: [PATCH] Resolves issue #77 Allow ipython notebook to bind to all network interfaces --- bidmach | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bidmach b/bidmach index 62722196..9c033a14 100755 --- a/bidmach +++ b/bidmach @@ -65,7 +65,7 @@ if [ "$1" = "notebook" ]; then else KERNEL_CMD="[\"java\", \"-cp\", \"${ALL_LIBS}\", \"$DJAVA_NATIVE\", \"${MEMSIZE}\", \"-Xms128M\", \"-Dfile.encoding=UTF-8\", \"org.refptr.iscala.IScala\", \"--profile\", \"{connection_file}\", \"--parent\"]" fi - ipython notebook --profile scala --KernelManager.kernel_cmd="$KERNEL_CMD" + ipython notebook --ip="*" --profile scala --KernelManager.kernel_cmd="$KERNEL_CMD" else ${BIDMACH_ROOT}/scripts/scala/scala -nobootcp -toolcp "${ALL_LIBS}" -cp "${ALL_LIBS}" -Yrepl-sync -i ${LIBDIR}/bidmach_init.scala "$@" fi