diff --git a/bin/compile b/bin/compile
index d2f72a58788eaf21c871f777d366627c42f9ec7a..f523cdf95db1a01fe7c65c6a3cf5a892ba6321d9 100755
--- a/bin/compile
+++ b/bin/compile
@@ -166,7 +166,7 @@ source $BIN_DIR/steps/pylibmc
 source $BIN_DIR/steps/cryptography
 
 # Install dependencies with Pip.
-source $BIN_DIR/steps/pip-install
+sub-env $BIN_DIR/steps/pip-install
 
 # Django collectstatic support.
 sub-env $BIN_DIR/steps/collectstatic
diff --git a/bin/steps/pip-install b/bin/steps/pip-install
index 00aabd79d71565766f6a7729e0dd5d533a0b158f..05b97ab78344bc829cc8779bfba845d79843b3c7 100755
--- a/bin/steps/pip-install
+++ b/bin/steps/pip-install
@@ -1,3 +1,7 @@
+#!/usr/bin/env bash
+
+source $BIN_DIR/utils
+
 # Install dependencies with Pip.
 puts-step "Installing dependencies with pip"
 
@@ -13,4 +17,4 @@ cp requirements.txt .heroku/python/requirements-declared.txt
 [ ! "$FRESH_PYTHON" ] && bpwatch stop pip_install
 [ "$FRESH_PYTHON" ] && bpwatch stop pip_install_first
 
-echo
\ No newline at end of file
+echo