AngularPelican: Difference between revisions
From charlesreid1
No edit summary |
(→Start) |
||
| Line 2: | Line 2: | ||
=Start= | =Start= | ||
==No Node - Well, Okay, Fine, Install Node== | |||
First, I want to use Bower, that's it - no grunt, no gulp, no node. | First, I want to use Bower, that's it - no grunt, no gulp, no node. | ||
| Line 14: | Line 16: | ||
nvm alias default 0.11.16 | nvm alias default 0.11.16 | ||
npm install -g bower | npm install -g bower | ||
</pre> | |||
==Install Pelican== | |||
<pre> | |||
pip install pelican | |||
</pre> | </pre> | ||
Revision as of 21:08, 30 March 2015
Going to try and get Angular detached from the nightmare otherwise known as Node.js.
Start
No Node - Well, Okay, Fine, Install Node
First, I want to use Bower, that's it - no grunt, no gulp, no node.
But Bower is installed by Node, and that means I have to sit around for 45 minutes while node installs itself:
git clone https://github.com/creationix/nvm.git ~/.nvm echo "source ~/.nvm/nvm.sh" >> .bashrc nvm ls-remote nvm install -s v0.11.16 nvm alias default 0.11.16 npm install -g bower
Install Pelican
pip install pelican