Reputation: 201
What is the difference between apt-get install -g strongloop and apt-get install -g strong-cli ?
Upvotes: 0
Views: 1617
Reputation: 8229
Assuming apt-get
was a typo and you actually meant npm
, the difference is strong-cli is the old package name and it was renamed to strongloop.
You should use npm install -g strongloop
because the old package is no longer updated.
Upvotes: 2