📚
Docs - Float16
homeapp
  • 🚀GETTING STARTED
    • Introduction
    • Account
      • Dashboard
      • Profile
      • Payment
      • Workspace
      • Service Quota
    • LLM as a service
      • Quick Start
        • Set the credentials
      • Supported Model
      • Limitation
      • API Reference
    • One Click Deploy
      • Quick Start
        • Instance Detail
        • Re-generate API Key
        • Terminate Instance
      • Features
        • OpenAI Compatible
        • Long context and Auto scheduler
        • Quantization
        • Context caching
      • Limitation
      • Validated model
      • Endpoint Specification
    • Serverless GPU
      • Quick Start
        • Mode
        • Task Status
        • App Features
          • Project Detail
      • Tutorials
        • Hello World
        • Install new library
        • Prepare model weight
        • S3 Copy output from remote
        • R2 Copy output from remote
        • Direct upload and download
        • Server mode
        • LLM Dynamic Batching
        • Train and Inference MNIST
        • Etc.
      • CLI References
      • ❓FAQ
    • Playground
      • FloatChat
      • FloatPrompt
      • Quantize by Float16
  • 📚Use Case
    • Q&A Bot (RAG)
    • Text-to-SQL
    • OpenAI with Rate Limit
    • OpenAI with Guardrail
    • Multiple Agents
    • Q&A Chatbots (RAG + Agents)
  • ✳️Journey
    • ✨The Beginner's LLM Development Journey
    • 📖Glossary
      • [English Version] LLM Glossary
      • [ภาษาไทย] LLM Glossary
    • 🧠How to install node
  • Prompting
    • 📚Variable
    • ⛓️Condition
    • 🔨Demonstration
    • ⌛Loop
    • 📙Formatting
    • 🐣Chat
    • 🔎Technical term (Retrieve)
  • Privacy Policy
  • Terms & Conditions
Powered by GitBook
On this page
  • Installation Steps
  • 1. Install NVM (Node Version Manager)
  • 2. Verify NVM Installation
  • 3. View Available Node.js Versions
  • 4. Install Node.js
  • 5. Verify Installation
  1. Journey

How to install node

node installation guide

This guide will help you install Node.js using Node Version Manager (NVM). NVM allows you to easily install and manage different versions of Node.js on your system.

Installation Steps

1. Install NVM (Node Version Manager)

Open your terminal and run the following command:

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash

After installation, add these lines to your shell configuration file (.bashrc, .zshrc, or .profile):

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"

Note: You may need to restart your terminal or run source ~/.bashrc (or your appropriate shell configuration file) for the changes to take effect.

2. Verify NVM Installation

Verify that NVM is properly installed by checking its version:

nvm --version

3. View Available Node.js Versions

To see all available Node.js versions:

nvm ls-remote

This command displays a list of all Node.js versions that can be installed through NVM.

4. Install Node.js

Install your desired version of Node.js (version 20 or higher is required for float16 CLI):

nvm install <node_version>

5. Verify Installation

After installation, verify that Node.js is properly installed:

node --version
Previous[ภาษาไทย] LLM GlossaryNextVariable

Last updated 3 months ago

✳️
🧠