diff --git c/views_infinite_scroll.install w/views_infinite_scroll.install
new file mode 100644
index 0000000..b276502
--- /dev/null
+++ w/views_infinite_scroll.install
@@ -0,0 +1,31 @@
+<?php
+/**
+ * @file
+ * Install file for Views Infinite Scroll module.
+ */
+
+/**
+ * Implements hook_requirements().
+ */
+function views_infinite_scroll_requirements($phase) {
+  $requirements = array();
+  $t = get_t();
+  if (module_exists('libraries')) {
+    $path = 'sites/all/libraries/autopager';
+  }
+  else {
+    $path = drupal_get_path('module', 'views_infinite_scroll') . '/js';
+  }
+  $installed = (file_exists($path . '/jquery.autopager-1.0.0.js')) ? TRUE : FALSE;
+  switch ($phase) {
+    case 'runtime':
+      $requirements['autopager_library'] = array(
+        'title' => $t('jQuery Autopager Plugin'),
+        'value' => $installed ? $t('Installed') : $t('Missing'),
+        'severity' => $installed ? REQUIREMENT_OK : REQUIREMENT_ERROR,
+        'description' => $installed ? $t('jQuery Autopager is installed and ready to use.') : $t('The jQuery Autopager Plugin is missing. You must download it in order to be able to use the infinite scroll with views. For more information please read the README file.'),
+      );
+      break;
+  }
+  return $requirements;
+}
