windows system installation of the whole process of meteor.

When installing meteor, the situation we encounter is that the official website needs over the wall, the installation package also rarely find.

I will be installed in the actual development of the whole process of meteor, including pit mining records, there may be a better way, I hope a lot of correction bigwigs.

In the C: \ Windows \ System32 find cmd.exe, double-click to open the following:

Enter https://chocolatey.org/install site

@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

I.e., the first sentence in the site, copy and paste the open cmd run, i.e., below

After this command is complete, enter choco install meteor命令即可,如下图所示

随后可以输入meteor --version查看meteor 的版本 即如下图

即可安装成功。

Guess you like

Origin www.cnblogs.com/bingchenzhilu/p/11362769.html