bash: npm: command not found?

前端 未结 11 1444
情歌与酒
情歌与酒 2020-12-30 19:33

I\'m learning laravel and follwing this tutorial,

But when I went try and install npm, is says bash: npm: command not found

11条回答
  •  粉色の甜心
    2020-12-30 20:23

    Debian:

    cd /tmp/
    wget  https://deb.nodesource.com/setup_8.x
    
    echo 'deb https://deb.nodesource.com/node_8.x  stretch  main' > /etc/apt/sources.list.d/nodesource.list
    
    wget -qO - https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
    
    apt update
    
    apt install  nodejs
    
    node -v
    
    npm -v
    

提交回复
热议问题