第04篇 Windows平台安装meteor

在安装meteor的时候,大家都会遇到的情况就是,安装包也很少能找到。

以下是在windows安装meteor的过程。

如果进入官网:https://www.meteor.com/install,建议是先安装chocolatey:

第04篇 Windows平台安装meteor_第1张图片

1、安装Chocolatey

用管理员模式打开cmd.exe;

第04篇 Windows平台安装meteor_第2张图片

从浏览器进入https://chocolatey.org/install网站;

拉到主页最下面:

第04篇 Windows平台安装meteor_第3张图片

点击进去后,这里是关键:

第04篇 Windows平台安装meteor_第4张图片

复制其中的所有内容,本文当时是:

@"%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"

把它当作命令在cmd下执行:

第04篇 Windows平台安装meteor_第5张图片

安装完成后查看版本,安装正常:

 

2、安装meteor

输入以下命令开始安装meteor:

C:\WINDOWS\system32>choco install meteor

成功安装过程如下:

第04篇 Windows平台安装meteor_第6张图片

在环境变量设置中,在PATH环境变量里添加Meteor的路径。
C:\Users\administrator\AppData\Local\.meteor

重启后查看:

第04篇 Windows平台安装meteor_第7张图片

安装正常。

 

备注:

如果只能在windows上开发,可能会遇到各种各样的问题,大部分是npm的问题,而且不能在移动端运行。

 

你可能感兴趣的:(第04篇 Windows平台安装meteor)