Reputation: 73
without using node installer, Can we install node in windows and Mac OS?
Upvotes: 0
Views: 1613
Reputation: 2708
If you want install a Package from command line, you need a package manager like Yarn or Chocolatey for example :
Using Chocolatey:
cinst nodejs
# or for full install with npm
cinst nodejs.install
However i don't understand why you want install a package manager with another package manager.. Just download Node from their website https://nodejs.org
Upvotes: 1