Rate this page:
In this short guide you'll install and configure the software required to work with the Forge platform on a Linux platform.
Forge requires Docker version 17.03 or later. To download Docker, visit get Docker.
Once Docker is installed and running, check your Docker version by running the following in the terminal:
1 2docker --version
Which outputs your Docker version, for example: Docker version 19.03.13, build 4484c46d9d
.
Forge documentation doesn't include the sudo
command when calling Docker.
You should read [Manage Docker as a non-root user]
(https://docs.docker.com/engine/install/linux-postinstall/) for more
important security considerations and steps to configure your system.
The Forge CLI requires a fully supported LTS release of Node.js installed; namely, versions 14.x, 16.x, or 18.x.
Forge developers on Linux should use the OS package manager and Node Version Manager (nvm) to configure the environment.
Install Node.js via package manager. See the [Node.js package manager] (https://nodejs.org/en/download/package-manager/) documentation for a list of supported platforms.
Install nvm.
Select the latest Node.js LTS release by running the following in the terminal:
1 2nvm install --lts nvm use --lts
Check your Node.js version, run the following in the terminal:
1 2node --version
Which outputs your node version.
You're ready to continue the Forge getting started guide, next you'll install the Forge CLI.
Rate this page: