检查运行环境:
Windows10
nodejs14.18.1
-
python3.6
【node-gyp
会依赖python
环境,不安装会报错:gyp err
】 -
git(最新版)
【安装后配置github ssh key
,不配置可能会报错:code 128
】
配置github ssh key
可以参考:https://blog.csdn.net/lqlqlq007/article/details/78983879
如果配置完github ssh key
还是报错code 128
说明链接不上github
,这时需要给git
配置vpn
代理
解决方法:
配置git proxy
为全局的 git 项目都设置代理:
git config --global http.proxy 127.0.0.1:1080(此处的端口号根据自己的代理端口进行修改)
git config --global https.proxy 127.0.0.1:1080(此处的端口号根据自己的代理端口进行修改)
(注意:设置代理的时候上面两个都要设置,一个是https,一个是http少一个都会报错)
为某个 git 项目单独设置代理:
git config --local http.proxy 127.0.0.1:1080 (此处的端口号根据自己的代理端口进行修改)
git config --local https.proxy 127.0.0.1:1080 (此处的端口号根据自己的代理端口进行修改)
配置完成可使用:
git config --global http.proxy 查看代理地址
git config --global --unset http.proxy 删除代理地址
查询代理端口的方法:
git使用代理的所有配置:
user.name=你的名字
user.email=你的邮箱
url.https://.insteadof=git://
http.sslverify=false
http.proxy=127.0.0.1:4780
https.proxy=127.0.0.1:4780
-
visual studio 2019(最新版)
【安装的时候需要添加:Desktop development with C++ 】
node-gyp
进行编译的时候需要使用,没有安装对会报错code1 gyp err
安装的时候按照下图进行勾选:
node config设置
npm config set registry=https://registry.npm.taobao.org
npm config set msvs_version=2019
获取项目
使用git
git clone https://github.com/PanJiaChen/vue-element-admin.git
或者直接到https://github.com/PanJiaChen/vue-element-admin下载压缩包
进入项目目录
cd vue-element-admin
安装依赖
npm install
本地开发 启动项目
npm run dev
网友评论