Thomas Johnson
Thomas Johnson

Reputation: 51

Meteor Release Version Error When Attempting to Start Server

When trying to start the meteor server I get the following error:

This project says that it uses Meteor release <<<<<<< [email protected] >>>>>>>, but you don't have that version of Meteor installed and the Meteor update servers don't have it either. Please edit the .meteor/release file in the project

I have updated to 1.0.2.1 and the .meteor/release file in the project is reflecting that. The other interesting thing is that when I attempt to pull the version meteor -v I am thrown the same error. I am running Ubuntu 14.04.

Upvotes: 0

Views: 508

Answers (1)

wordsforthewise
wordsforthewise

Reputation: 15787

from within the project folder:

meteor update --release [email protected]

or if you're using a different version of meteor

meteor update --release METEOR@[insert version here]

Upvotes: 1

Related Questions