Install multiple version of node.js using NVM (Ubuntu)

前端 未结 4 2107
名媛妹妹
名媛妹妹 2021-01-30 07:23

How to install multiple version of node.js in Ubuntu using NVM?

4条回答
  •  自闭症患者
    2021-01-30 07:52

    The top answer is out of date. Now, just follow the guide on the github to install :

    https://github.com/creationix/nvm#installation

    For linux machines, its as simple as :

    curl -o- https://raw.githubusercontent.com/creationix/nvm/v*/install.sh | bash

    Replace v* with the latest version from https://github.com/creationix/nvm/releases.

    For example: curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash

提交回复
热议问题