angularjs - How install Start Angular template correctly? -
angularjs - How install Start Angular template correctly? -
i'm new in angular development, found this template , utilize it. i'm doing this:
sudo apt-get install -y nodejs sudo apt-get install -y npm sudo npm install -g bower sudo npm install -g grunt-cli clone repository of project:
git clone https://github.com/start-angular/sb-admin-angular.git cd sb-admin-agular npm install bower but when seek execute command npm start, gives me follow error:
vagrant@themachine:~/sb-admin-angular$ npm start > sb-admin@0.0.0 start /home/vagrant/sb-admin-angular > grunt serve /usr/bin/env: node: no such file or directory npm err! weird error 127 npm warn failure might due utilize of legacy binary "node" npm warn farther explanations, please read /usr/share/doc/nodejs/readme.debian npm err! not ok code 0 vagrant@themachine:~/sb-admin-angular$ any thought how solve ? or causing ?
you might missing dependencies. looks installed bower. seek installing dependencies using npm install
re-follow installation instructions on github page 5-7:
npm install - bower install ran postinstall npm start - shortcut grunt serve npm run dist - shortcut grunt serve:dist minify files deployment angularjs node.js templates ubuntu
Comments
Post a Comment