Reputation: 303
I'm using Windows Powershell to create a meteor app. I have ran the command:
meteor create simple-todos
and for the past hour it has been saying:
Loading package standard-minifier-css...
I'm new to meteor, but all I've done up to this point is follow the installation instructions on their website and executed the command above. How long should this process take, and why is it taking so long?
Meteor Version: 1.11.1
Operating System: Windows 10
Upvotes: 1
Views: 965
Reputation: 3670
It's not normal for it to take so long and it's probably related to your Windows permissions. I would try checking if you used Chocolatey to install Meteor, they do list a couple of requirements to correctly run Powershell to give it the right Administrative rights. This includes running the resulting Powershell as an Admin.
Then on Meteor's site it does say that you should disable all anti-virus software, including Microsoft's defender as it probably tries to check on each file you are trying to install through Powershell. If that doesn't work, check in the Issues section in Meteor's github, you can usually search to find people with similar issues or create your own to get some free professional help on Windows specific issues.
I would recommend just getting a simple open-source Virtual Machine app and making a Ubuntu installation. Things are a bit more sorted on the Linux side of things, just because of the nature of file permissions - obviously you would need some basic Linux knowledge to get things going correctly there, but usually you would deploy a Meteor app using cheap cloud servers running Ubuntu, so you might want to get ahead of it.
Upvotes: 3