OS/Linux
Installing Linux Developer Tools
dozob
2021. 10. 19. 17:47
Across the different distros of Linux, there are different packages you'll need to install:
- Debian, Ubuntu, popOS, and other Debian-based distributions:
$ sudo apt-get update
$ sudo apt-get install build-essential tar curl zip unzip
- CentOS
$ sudo yum install centos-release-scl
$ sudo yum install devtoolset-7
$ scl enable devtoolset-7 bash
Ubuntu
$ sudo apt-get install bison
$ sudo apt-get install pkg-config
$ sudo apt-get install python3-distutils