No meteor team found

I installed the same version from Official Meteor Windows Support on one computer, and the "meteor" command works fine, now I tried to install it on another computer, but I have a question that the "meteorite command was not found." I tried to add the path to the system variables, but it does not work. Any ideas? thank you

+6
source share
5 answers

I just discovered on Windows (I'm using Windows 8.1) that you need to type meteor.bat to call a meteor. e.g. meteor.bat create myapp

+13
source

For others who may run into this problem.

I am on Windows 10 and installed Meteor 1.4 . It turned out meteor command not found when trying to start meteor from the command line.

I checked the PATH variables for users and found this entry:

C:\Users\%username%\AppData\Local\.meteor\

I removed the last backslash, saved the PATH variables, and opened a new command line. Now the meteor crew has been recognized.

My PATH variable now looks like this: the last deleted backslash:

C:\Users\%username%\AppData\Local\.meteor

Note. You can replace %username% with your actual Windows username. The recording should work fine, as the system will resolve it to your username.

+7
source

The answers already listed were only half for me.

The following steps have resolved the issue.

Set the SYSTEM environment variable:

 C:\Users\%username%\AppData\Local\.meteor 

Or if you want, explicitly change your username

 C:\Users\rich\AppData\Local\.meteor 

Then, in accordance with the accepted answer to this question.

Create a file called meteor in the directory where meteor.bat is located. For instance. way higher.

Hint you can use

 touch meteor 

Copy these lines to a file and save

 #!/bin/sh cmd //c "$0.bat" " $@ " 
+5
source

If the environment variable is not in the environment variables, you can execute the command only from the directory in which the meteorite is present. that is, "C: \ Users \ username \ AppData \ Local.meteor \".

To use a meteorite from any directory inside the command line, add the path variable to your environment settings.

"C: \ Users \ username \ AppData \ Local.meteor \ meteor.bat". Restart the command line if it is already open. This will allow meteorite to work everywhere.

+1
source

The question is old, but it can help others who are faced with a similar problem.

I just installed a meteorite and had the same problem. It looks like it was installed successfully and added C: \ Users \ USERNAME \ AppData \ Local.meteor to a user variable ( not a system variable ).

I am using Windows 10 and I may have to re-register or reboot in order to get it working properly.

So, to use without re-registering or rebooting, use the full path in the directory in which you want to create the project:

C: \ Projects> C: \ Users \ USERNAME \ AppData \ Local.meteor \ meteor my_project

Hope this helps.

0
source

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


All Articles