Error: No hay módulo: ngRoute al intentar implementar el enrutamiento en angularjs
app = angular.module("dithat", ["ngRoute", "ngResource", 'ng-rails-csrf']);
app.config(['$routeProvider',
function($routeProvider) {
$routeProvider.
when('/', {
templateUrl: 'app/views/layouts/_user_page.html',
controller: 'accomplishmentController'
});
}]);
¿Me estoy perdiendo de algo? ¡Gracias!