Skip to content

Instantly share code, notes, and snippets.

@GracjanZwr
Last active June 15, 2019 12:52
Show Gist options
  • Save GracjanZwr/112de571d939e5a4dff5ab97a400afae to your computer and use it in GitHub Desktop.
Save GracjanZwr/112de571d939e5a4dff5ab97a400afae to your computer and use it in GitHub Desktop.
installing nodejs in Kali Linux

Getting node.js to work in Kali Linux:

  1. install node version manager :

    wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.4/install.sh | bash or wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.4/install.sh | zsh

    depending which shell you are using: bash, zsh, fish etc. use diffrent pipe option

  2. close and reopen your terminal window and check if nvm get installed properly with this comand

    command -v nvm

  3. install node.js using nvm ( here we using version node.js version 6 but you can use any version you wish ):

    nvm install 6

Thats it enjoy your coding ! ;)

@Vishal-Singh-5
Copy link

I am getting error of "checkinstall" command not found

@LucasKonrath
Copy link

Thank you so freaking much man! Was pulling out my hair because of this already, haha!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment