Windows的开发环境配置
2019-05-28 / 1 min read
开始配置吧!
安装Chocolatey
Chocolatey是一个Windows下的包管理工具,类似Mac下的Alfred
@"%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"
如果遇到问题,请参考链接
安装Node.js
choco install nodejs
安装Hexo
使用npm
安装Hexo
npm install hexo-cli -g
安装配合Hexo使用的Git
npm install hexo-deployer-git --save