Ubuntu – E: Unable to locate package libthesql-ruby

aptMySQLruby

I try to install mysql for rails but i know that first must install the package

libmysql-ruby

I do the command

E: Unable to locate package libmysql-ruby

But It returns

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package libmysql-ruby

I try to do upgrade and update but it same

Best Answer

libmysql-ruby appears to be a transitional package that has been phased out: the new package name seems to be ruby-mysql. If you are running Ubuntu 14.04 or later you will need to use

sudo apt-get install ruby-mysql
Related Question