Tried to downgrade npm to older version but version not changing

Viewed 2664

Run

npm install -g npm@5.5.1 in my terminal but my npm version is still 6.4.1

My Terminal

2 Answers

did you run this command with administrative privilages. I have never used mac but from my knowledge sudo npm install -g npm@5.5.1 should work. For windows, open CMD as administrator and then run npm install -g npm@5.5.1

Related