diff --git a/tasks.py b/tasks.py
index 871ef2a73f09d591ea2f8851df750cfba44e3b4f..51e1dfc596dbc3cd2e17141716ccf51723ecebd5 100644
--- a/tasks.py
+++ b/tasks.py
@@ -51,11 +51,11 @@ def install_sodium():
 def install_requirements(dev=False):
     if dev:
         # Install once to get the tests extra
-        run("pip install file://$PWD#egg=pynacl[tests]", hide="out")
+        run("pip install file://$PWD#egg=pynacl[tests]")
         # Install again to get an editable install
-        run("pip install -e .", hide="out")
+        run("pip install -e .")
     else:
-        run("pip install .", hide="out")
+        run("pip install .")
 
 
 @task