IS

Igor Schmidt04/09/2023 16:11
Share

Instalando o NODEJS no Ubuntu

    Boa tarde!

    Pessoal, estou no boot camp do Santander e para instalar o nodejs no Ubuntu usei a seguinte configuração retirada do github oficial: https://github.com/nodesource/distributions

    1 - Download and import the Nodesource GPG key

    sudo apt-get update
    sudo apt-get install -y ca-certificates curl gnupg
    sudo mkdir -p /etc/apt/keyrings
    curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
    

    2 - Create deb repository

    NODE_MAJOR=20
    echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list
    

    3 - Run Update and Install

    sudo apt-get update
    sudo apt-get install nodejs -y
    
    Share
    Comments (0)