Guest User

Untitled

a guest
Dec 12th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. # used to find an existing elm package installed and delete it, this command works to remove a 0.18 or 0.19 elm and reinstall one of the selected ones
  2. sudo find . -name "elm*" -exec rm -rf {} \;
  3.  
  4. # install elm@0.19
  5. sudo npm install -g elm --unsafe-perm=true --allow-root
  6.  
  7. # or
  8.  
  9. # install elm@0.18
  10. sudo npm install -g elm@0.18.0 --unsafe-perm=true --allow-root
Add Comment
Please, Sign In to add comment