How to install a specific version of Node on Ubuntu?

前端 未结 14 669
Happy的楠姐
Happy的楠姐 2020-12-07 12:52

I would like to install NodeJS version 0.8.18 on Ubuntu 12.04. I tried to install the newest version and then reverting to 0.8.18 by using nvm, but when I run m

相关标签:
14条回答
  • 2020-12-07 13:47

    The Node.js project recently pushed out a new stable version with the 0.10.0 release Use the following command on Ubuntu 13x sudo apt-get install nodejs=0.10.18-1chl1~raring1

    0 讨论(0)
  • 2020-12-07 13:50

    yes, its a duplicate answer but I insist using n module to install a specific version(following commands installs node version 6.9.5).

    npm install -g  n
    n 6.9.5
    
    0 讨论(0)
提交回复
热议问题