Ubuntu Dependencies

Almost Node would need to install and upgrade the dependencies in order to setup the environment

Git

sudo apt install git-all
git --version

You should see the last line similar to git version x.x.x

Rust

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustc --version

You should see the last line similar to rustc x.x.x (...)

Docker

Install

# Add Docker's official GPG key:
sudo apt update -y
sudo apt install apt-transport-https ca-certificates curl software-properties-common
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update -y
apt-cache policy docker-ce
sudo apt install docker-ce

Docker without sudo

Docker Compose

Install

Ubuntu Dependencies

Last updated