diff --git a/IPython/frontend/html/notebook/fabfile.py b/IPython/frontend/html/notebook/fabfile.py
index f156bf824..8f332f51e 100644
--- a/IPython/frontend/html/notebook/fabfile.py
+++ b/IPython/frontend/html/notebook/fabfile.py
@@ -7,19 +7,9 @@ import os
static_dir = 'static'
components_dir = os.path.join(static_dir,'components')
-def test_component(name):
- if not os.path.exists(os.path.join(components_dir,name)):
- components()
-
-def components():
- """install components with bower"""
- with lcd(static_dir):
- local('bower install')
def css(minify=True):
"""generate the css from less files"""
- test_component('bootstrap')
- test_component('less.js')
if minify not in ['True', 'False', True, False]:
abort('minify must be Boolean')
minify = (minify in ['True',True])