Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Upgrade default version of g++ on SDCC  ( node.js requires at least g++ >= 10.1). In order to do that you can load module with GCCcore, for examle:
    Code Block
    module load GCCcore/13.2.0
  2. After loading module, execute following commands:
    Code Block
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
    source ~/.nvm/nvm.sh
  3. To view available versions of node.js  you can run:
    Code Block
    nvm ls--remote
  4. execute following command:

    Code Block
    nvm install <node-version>
  5. To verify installation of node.js you can check it's version with following command:
    Code Block
    npm --version

...