Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

install mysql-dev on ubuntu 18.04

Tags:

mysql

I was requested to install mysql-dev on ubuntu 18.04 , but I couldn't find such package.I only got mysql-server.

is there a way to install mysql-dev , and how does it differ from mysql-server?

like image 479
user123 Avatar asked Dec 13 '18 08:12

user123


People also ask

Does Ubuntu 18.04 come with MySQL?

To follow this article, Linux Ubuntu 18.04 must be installed on the machine. By default, the latest MySQL version is included in the APT package repository.


1 Answers

There's no mysql-dev package, but libmysqlclient-dev.

You should run in your terminal:

sudo apt install libmysqlclient-dev 
like image 121
Júlio Campos Avatar answered Oct 14 '22 06:10

Júlio Campos