don't filter \# pips as they mean something, also it seems just libvirt-bin is the issue
diff --git a/stack.sh b/stack.sh
index a6d14c6..c278701 100755
--- a/stack.sh
+++ b/stack.sh
@@ -54,10 +54,10 @@
 # You should only have to run this once
 if [ "$CMD" == "install" ]; then
     # install apt requirements
-    apt-get install -y -q `cat $DIR/apts/*`
+    apt-get install -y -q `cat $DIR/apts/* | cut -d\# -f1`
 
     # install python requirements
-    pip install -r $DIR/pips/dash
+    pip install `cat $DIR/pips/*`
 
     # TODO: kill openstackx
     clone_or_up https://github.com/cloudbuilders/nova.git $NOVA_DIR