Update edgemicro

OS: Linux CentOS 6.*

I would like to update my npm *edgemicro* package to the latest version but running

npm update edgemicro
or 
sudo npm update edgemicro@2.5.4
etc.

does not appear to work i.e.

edgemicro -V

still returns the previous version.

What is the suggested procedure for updating?

Thanx in adv,

Michael McD.

0 1 269
1 REPLY 1

Hi @michaelmcdowell,

I noticed npm update doesn't work for me either. I'm not sure why. But this works if you want to install the latest version. I just used this command to update from version 2.3.3 to version 2.5.4 successfully:

npm install edgemicro@latest

If the original install was global, then be sure to use the -g flag. This doc explains how to figure out where edgemicro is installed.

Hope this helps

Will