TIDE

Post-Setup Guide

What to do after installing TIDE

Post-Setup Checklist

On the first launch, TIDE will automatically set up your terminal environment.

Once you are in the terminal, it's recommended to run a few commands to ensure your environment is fully up to date and ready for development.

1. Update Package Lists

Update the apt package list:

apt update

2. Upgrade Packages

Upgrade any pre-installed packages to their latest versions:

apt upgrade -y

3. Install Essential Build Tools

To compile code or install packages, you may need basic build tools like make, gcc, and g++:

apt install -y build-essential curl git

Now you are ready to set up your favorite languages and frameworks!

On this page