Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 656 Bytes

Env_Setup_Guide_for_Linux.md

File metadata and controls

28 lines (17 loc) · 656 Bytes

Env Setup Guide for Linux

This is guide is only for Ubuntu. If you are using other Linux distributions, please check the corresponding package manager to install the required softwares.

1. Install Build Essentials

Install build essentials:

sudo apt-get install build-essential

Check gcc version:

gcc -v  # or g++ -v

If you are using ubuntu 23, the outputs would imply the installed gcc version is "13.x.x".

If the output version is lower than 13, please check this article.

2. Install CMake

sudo apt-get install cmake