美文网首页
vue-element-admin安装依赖问题小记

vue-element-admin安装依赖问题小记

作者: 忘了呼吸的那只猫 | 来源:发表于2021-10-22 10:31 被阅读0次

    检查运行环境:

    • 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
    

    相关文章

      网友评论

          本文标题:vue-element-admin安装依赖问题小记

          本文链接:https://www.haomeiwen.com/subject/rrycaltx.html