3

I am tring to install RMysql Package however it throughs below error - which says mysql libraries are not installed.

enter image description here

I tried installing them using the yum command but there is a conflict with openssl.

enter image description here

How can I fix this and install the mysql library please. I am new to linux and just trying many things. Tried yum update, rpm installing client libraries from mysql

surpavan
  • 189

1 Answers1

3

You can resolve the conflict by removing openssl-devel package by following command.

yum remove {package name}

Or you can use --skip-broken in the end of command, it will skip the conflicted package.

yum install mysql-devel --skip-broken