记录开发所需环境配置
每次更换电脑都要重新安装常用工具及配置环境,为防止出现遗漏和节省时间,为此专门抽时间手打记录流程。
git
下载地址
https://git-scm.com
Windows下可额外选择安装 TortoiseGit 及其汉化包
https://tortoisegit.org/download/
VS Code
nvm(Node Version Manager)
github
https://github.com/coreybutler/nvm-windows/releases/tag/1.1.9
gitee
https://gitee.com/mirrors/nvm
以管理员运行powershell,在窗口上执行:
nvm install 16
nrm(npm registry manager)
1.nrm是npm的镜像源管理工具,有时候国外资源太慢,使用这个就可以快速地在 npm 源间切换
2.安装nrm
在命令行执行命令,npm install -g nrm,全局安装nrm。
3.使用
执行命令nrm ls查看可选的源。
nrm ls
4.切换
如果要切换到taobao源,执行命令nrm use taobao。
5.增加
你可以增加定制的源,特别适用于添加企业内部的私有源,执行命令 nrm add
nrm add registry http://registry.npm.frp.trmap.cn/
6.删除
执行命令nrm del
7.测试速度
nrm test npm
yarn
npm install -g yarn
如遇报错:
yarn : 无法加载文件 C:\Program Files\nodejs\yarn.ps1,因为在此系统上禁止运行脚本。
以管理员运行powershell,在窗口上执行:
1 |
|
然后输入Y,按Enter确认
查询命令:
1 |
|
utools
提效工具
Python 报错
gyp ERR! find Python 解决方案
http://www.javashuo.com/article/p-swgvspha-kx.html
1.安装node-gyp
npm install -g node-gyp
2.安装python
推荐安装2.7版本(自行选择32位或者64位安装):
https://www.python.org/download/releases/2.7/
3.配置环境变量
环境变量->系统环境变量->Path
4.npm 配置
npm config set python “D:\Python27\python.exe”
npm config set node_gyp “D:\nodejs\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js”
配置成功后,再次运行npm install就不会报错了
安装node-sass报错解决方案
node14使用sass版本
node-sass@4.12.0
node-loader@7.1.0
node14使用sass版本
node-sass@5.0.0
node-loader@10.0.5
node16使用sass版本
node-sass@6.0.0
node-loader@10.2.0