Joe Hudson
Joe Hudson

Reputation: 71

How to enable GD library in php 7 in linux ubuntu?

I've try with

sudo apt-get install php7-gd

but the message is: E: Unable to locate package php7-gd

If someone could help me please...

Upvotes: 5

Views: 17423

Answers (1)

jeromegamez
jeromegamez

Reputation: 3561

The package you are searching for is php7.0-gd, so

sudo apt-get install php7.0-gd

should do the trick.

Upvotes: 14

Related Questions