When meteor update
or npm
fails, meteor
can be installed/updated by using the Meteor install script available at https://install.meteor.com/.
However using curl
it has some issues to deal with the old certificate.
So using wget
instead seems to work fine:
wget -qO- https://install.meteor.com | sh
If the old version of meteor
was installed via npm
, it should be uninstalled first:
npm remove meteor -g