Skip to content

Linux

The simplest way to configure your Linux box for developing on the Cloud Platform is to use the ABC Development Environment (SDE) framework. SDE is a lightweight set of environment management scripts that streamlines the process of switching between AWS accounts and provides local mappings between workloads and AWS accounts.

To install Node.js:

  • Open a terminal window and run the following command:

    curl -s https://deb.nodesource.com/setup_18.x | sudo bash
    sudo apt install nodejs -y
    
  • Open a terminal window and run the following commands:

    # Install nvm, with:
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
    # Get latest version of node:
    nvm install --lts