Reputation: 178
I am having an issue where I do meteor run in my project, and it begins to install [email protected], once it is 100%, it says
Extracting [email protected]...
but it never finishes. I uninstalled meteor and reinstalled it but I am having the same issue.
United State. Windows 10.
Upvotes: 2
Views: 3689
Reputation: 1
Try adding the following to your local hosts file (C:\Windows\System32\Drivers\etc\hosts):
54.192.225.217 warehouse.meteor.com
Then run a meteor reset
in your app directory (warning - will wipe your local DB), then try starting your app again.
This works for me.
Link: https://forums.meteor.com/t/downloading-meteor-tool-1-4-0-1/27269/19?u=lucianopestana
Upvotes: 0
Reputation: 1277
This is a problem caused by the tar
extractor provided by Git.
$ where tar
- In my case, it is located in
C:\Program Files\Git\usr\bin\tar.exe
Then locate the file and rename it to tar.exe.old
Its done... try running Meteor again! >> $ meteor
Upvotes: 1
Reputation: 178
Thank you for your response, Vasil. I actually was able to find a solution and I am no longer experiencing this problem.
Turned out there was a problem with the tar.exe file in Git, and by uninstalling Git, and reinstalling it the latest version, 2.10.0.windows.1, the problem has seemed to go away.
It seemed that no matter how long I left it, it stayed stuck at "Extracting meteor-tools . . ." but now that I updated Git the problem has gone away.
Upvotes: 0