I use Fedora 26 and NodeJS v 6.11 Now NodeJS v8.9 recommended for most users. I downloaded this version( node-v8.9.0-linux-x64.tar.xz ) and unpack, but what next? I have tree of folders.
Asked
Active
Viewed 874 times
1 Answers
0
You can use nvm to help you with that, simply do the following.
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash
export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
command -v nvm
(if it outputs nvm then it is installed correctly.)nvm install 8.9.0
You now have installed Node.js 8.9.0 and Node Package Manager (Latest)

user229044
- 232,980
- 40
- 330
- 338

Nathaniel Fredericks
- 197
- 1
- 1
- 10