Meteor on Windows: meteorite command does not display anything

I installed the msi file from win.meteor.com

I reboot the computer and open CMD and type meteor create app , but nothing happens. He does not say that the command was undefined, so I do not know what is wrong here.

I am using Windows 7 64-bit home.

+4
source share
3 answers

I discovered a problem with node fibers (on windows) and had a preliminary fix - at least this fixed the problem for me, and I would be interested to know if this fixes it for others as well.

Ultimately, the problem was, apparently, a sudden death due to and violation of access. However, the main reason was that the stream locators were not correctly connected to the fiber optic switch.

+2
source

you must check the path to the environment

add Meteor root directory to PATH like this

PATH: ...; d: \ Meteor; d: \ Meteor \ bin

METEOR_PATH: d: \ Meteor

NODE_PATH: d: \ Meteor \ lib \ node_modules

+1
source

I have this problem too.

 METEOR_PATH = C:\Program Files (x86)\Meteor\ NODE_PATH = C:\Program Files (x86)\Meteor\lib\node_modules PATH = C:\Program Files (x86)\VMware\VMware vSphere CLI\Perl\site\bin;C:\Program Files (x86)\VMware\VMware vSphere CLI\Perl\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Enterprise Vault\EVClient\;C:\Program Files (x86)\Heroku\bin;C:\Program Files (x86)\git\cmd;C:\Program Files\Java\jre6\bin\;C:\Program Files\Sublime Text 2;C:\Program Files (x86)\Meteor\;C:\Program Files (x86)\Meteor\bin 

When you run the meteor command, it opens meteor.js in node (if I add console.log ('xxx') to meteor.js, I see the output), but the script ends without exiting.

0
source

Source: https://habr.com/ru/post/1469418/


All Articles