0

$ sudo apt-get install freeglut3-dev Reading package lists... Done Building dependency tree
Reading state information... Done E: Unable to locate package freeglut3-dev

1 Answers1

2

First, run the following command to enable the "Universe" repository:

sudo add-apt-repository universe

Next, update apt and install freeglut3-dev by running the following commands:

sudo apt update
sudo apt install freeglut3-dev
mchid
  • 43,546
  • 8
  • 97
  • 150