mirror of https://github.com/embarklabs/embark.git
Merge pull request #72 from linagee/patch-5
npm -g install with no sudo
This commit is contained in:
commit
df4cf3d5b4
10
README.md
10
README.md
|
@ -23,6 +23,16 @@ For specs: pyethereum, ethertdd.py
|
|||
$ npm install -g embark-framework grunt-cli
|
||||
```
|
||||
|
||||
If you get EACCES (access denied) errors, don't use sudo, try this:
|
||||
|
||||
```Bash
|
||||
$ mkdir ~/npm-global
|
||||
$ npm config set prefix ~/npm-global
|
||||
$ echo 'export PATH="$PATH:$HOME/npm-global/bin"' >>~/.bashrc
|
||||
$ source ~/.bashrc
|
||||
$ npm install -g embark-framework grunt-cli
|
||||
```
|
||||
|
||||
See [Complete Installation Instructions](https://github.com/iurimatias/embark-framework/wiki/Installation).
|
||||
|
||||
Usage - Demo
|
||||
|
|
Loading…
Reference in New Issue