• nvm诡异的报错


    安装:
    curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
    wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
    执行命令:
    export NVM_DIR="$HOME/.nvm"
    [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
    安装node:

    nvm ls-remote   显示 N/A

    然后调用一下:curl -v https://nodejs.org/dist/   发现

    * Adding handle: conn: 0x7fc4ea003000
    * Adding handle: send: 0
    * Adding handle: recv: 0
    * Curl_addHandleToPipeline: length: 1
    * - Conn 0 (0x7fc4ea003000) send_pipe: 1, recv_pipe: 0
    * About to connect() to nodejs.org port 443 (#0)
    * Trying 104.20.23.46...
    * Connected to nodejs.org (104.20.23.46) port 443 (#0)
    * Unknown SSL protocol error in connection to nodejs.org:-9805
    * Closing connection 0
    curl: (35) Unknown SSL protocol error in connection to nodejs.org:-9805

    所以nvm在获取远端仓库的时候,就获取不到版本信息,是因为本身的ssl有问题,所以:

    export NVM_NODEJS_ORG_MIRROR=http://nodejs.org/dist   向远方仓库采用http请求  
     
  • 相关阅读:
    js forEach方法
    day1总结
    jupyter notebook
    java_13网络编程
    原生 input radio 优化
    JQ 获取 input file 图片 显示在对应位置
    math.js 使用
    前端优化
    文字动态颜色变化效果
    谷歌,火狐隐藏滚动条
  • 原文地址:https://www.cnblogs.com/jay--zhang/p/6252585.html
Copyright © 2020-2023  润新知