# Add the following lines at the end of your $HOME/.bashrc
export GOPATH=$HOME/gocode
export PATH=$PATH:$GOPATH/bin:/usr/local/go/bin
```
### STEP 5 - Apply profile updates
```bash
source ~/.bashrc
```
### STEP 6 - Verify install
```bash
which go
go version
# Example output:
# /usr/local/go/bin/go
# go version go1.26.5 linux/amd64
```
## Node.js & npm
We use the _How To Install Using NVM_ method. NVM is the _Node Version Manager (NVM)_ tool used to install Node.js. It allows concurrent use of different Node.js installations and simplifies the version upgrade procedure.