rahil sharma
rahil sharma

Reputation: 73

Can we install node using command line in windows/Mac ? is it possible ?

without using node installer, Can we install node in windows and Mac OS?

Upvotes: 0

Views: 1613

Answers (1)

Léo R.
Léo R.

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

Related Questions