Reputation: 33
I am new here and Meteor. I have some package install problems.
When I did step of this video
https://www.youtube.com/watch?v=BvkQNTIfbQk&index=3&list=PLLnpHn493BHFYZUSK62aVycgcAouqBt7V
I get an error like this
C:\Users\Home\AppData\Local.meteor\packages\meteor-tool\1.4.0-1\mt-os.windows.x86_32\isopackets\ddp\npm\node_modules\meteor\promise\node_modules\meteor-promise\promise_server.js:165
throw error; ^
Error: No metadata files found for isopack
at: /C/Users/Home/AppData/Local/.meteor/packages/stolinski_stylus-multi/1.4.3
at Isopack.loadUnibuildsFromPath (C:\tools\isobuild\isopack.js:900:13)
at C:\tools\packaging\tropohouse.js:520:19
at Array.forEach (native)
at Function..each._.forEach (C:\Users\Home\AppData\Local.meteor\packages\meteor-tool\1.4.0-1\mt-os.windows.x86_32\dev_bundle\lib\node_modules\underscore\underscore.js:79:11)
at C:\tools\packaging\tropohouse.js:519:11
at C:\tools\utils\buildmessage.js:359:18
at [object Object].withValue (C:\tools\utils\fiber-helpers.js:89:14)
at C:\tools\utils\buildmessage.js:352:34
at [object Object].withValue (C:\tools\utils\fiber-helpers.js:89:14)
at C:\tools\utils\buildmessage.js:350:23
at [object Object].withValue (C:\tools\utils\fiber-helpers.js:89:14)
at Object.enterJob (C:\tools\utils\buildmessage.js:324:26)
at Object.download (C:\tools\packaging\tropohouse.js:454:20)
at C:\tools\packaging\tropohouse.js:611:18
at C:\tools\utils\buildmessage.js:572:21
at C:\Users\Home\AppData\Local.meteor\packages\meteor-tool\1.4.0-1\mt-os.windows.x86_32\isopackets\ddp\npm\node_modules\meteor\promise\node_modules\meteor-promise\fiber_pool.js:32:39
What can I do for instal this packages?
Upvotes: 3
Views: 672
Reputation: 6018
I faced this issue today.
Solution
NOTE : It will automatically download that same package automatically and then it will build entire project and run successfully. I am not sure why it does that, but this is how I made it work.
Upvotes: 0
Reputation: 822
I get same error. I use Windows 10. Problem is windows file path length limitation. I solved the problem by following the steps below.
meteor create newApp
cd newApp
meteor npm install
Upvotes: 0