Merge pull request #177 from dimisjim/patch-1
Add Information on how to install in Ubuntu and resolve npm permissions issue
This commit is contained in:
commit
5f08ac30f3
11
README.md
11
README.md
|
@ -456,6 +456,17 @@ Solution:
|
||||||
sudo apt-get install libgconf-2-4
|
sudo apt-get install libgconf-2-4
|
||||||
```
|
```
|
||||||
|
|
||||||
|
> Error: EACCES: permission denied, access '/usr/local/lib'
|
||||||
|
|
||||||
|
Solution:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo mkdir -p /usr/local/lib/node_modules && sudo chown -R $(whoami):$(whoami) /usr/local/lib/node_modules
|
||||||
|
|
||||||
|
# then use the install command in the "Installation" section above
|
||||||
|
npm install -g terminalizer
|
||||||
|
```
|
||||||
|
|
||||||
# License
|
# License
|
||||||
|
|
||||||
This project is under the MIT license.
|
This project is under the MIT license.
|
||||||
|
|
Loading…
Reference in New Issue