1

I am trying to install gtest in 18.04. I ran

sudo apt-get install libgtest-dev

but when I go in to the folder /usr/src/ there is not gtest or googletest folder.

According to this:

There should be a directory for me to build gtest.

Does anyone know what is going on?

1 Answers1

0

You have to try reinstalling both packages by:

sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install --reinstall googletest libgtest-dev

and retry directory listing.

N0rbert
  • 103,263