How to install NodeJS LTS on Windows as a local user (without admin rights)

前端 未结 12 775
情深已故
情深已故 2020-12-07 09:21

I\'m using Windows as a simple user (I don\'t have any admin rights) and want to install NodeJS LTS.

On the download site I have the choice to download only the bina

12条回答
  •  佛祖请我去吃肉
    2020-12-07 09:32

    Add following paths to the PATH environment variable, if you have downloaded the Node.js Windows Binary (.zip)

    1. \node-v10.16.1-win-x64\
    2. \node-v10.16.1-win-x64\node_modules\npm\bin\

    Then test following commands from the command prompt:

    node -v
    
    nmp -v
    

提交回复
热议问题