Reputation: 407
I have been using meteor framework for the past few days. Now, when i create a new project it downloads [email protected]_4. But it does not complete download. It seems to be stuck at downloading and shows only following line:
Downloading [email protected]_4...
How can i troubleshoot this issue.
Upvotes: 16
Views: 8634
Reputation: 3
You can upgrade meteor, there is no problem now:
meteor update
If not, create a new project and test it
Upvotes: 0
Reputation: 1
I've seen it myself on Mac OS while i run 'meteor update'. Then i run "ping warehouse.meteor.com" on shell.
And I found that meteor's network service is not good, just try it at other times.
Upvotes: 0
Reputation: 836
This is caused by a permissions issue. As workaround, try running the create command with super user permissions:
sudo meteor create myAppName
Probably you will need special permissions for running the app too:
/MyAppName> sudo meteor
If you want to stop running meteor commands with super user permissions, check this: Meteor will not run without Sudo?
Upvotes: 1
Reputation: 51
As I haven't found this answer elsewhere with this search and can save some time:
In windows 7, this happened to me because I forgot to run meteor -create in a console with administrator rights.
Just Run As Administrator and check again.
Hope it helps
Upvotes: 3
Reputation: 569
I got it to download by adding 54.192.225.217 warehouse.meteor.com
to /etc/hosts
There's a GitHub issue about it here.
Upvotes: 16