screenshot hello there, Am trying to install Phonegap, in the process i have to install node, the picture is the error output while installing node
Asked
Active
Viewed 26 times
0
-
When you want to convey information present in your terminal, please copy the text and paste it here using this site's formatting tools. – DK Bose Jul 31 '18 at 15:19
-
2Possible duplicate of How do I fix the GPG error "NO_PUBKEY"? – karel Jul 31 '18 at 15:21
1 Answers
0
I suggest you to use NVM (Node Version Manager) to manage and install Node.js. It seems like an extra step, but you will be worries free regarding to node configuration.
To install NVM (From the GitHub Docs, where you have other installation alternatives):
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
After this, you could just do:
For latest node release:
nvm install node
For Long Term Support (LTS):
nvm install --lts

nicoramirezdev
- 123