OS version: Oracle Linux 7.6
I am trying to install an application (MySQL workbench) , but it errored out like below.
$ sudo yum install mysql-workbench-community-8.0.13-1.el7.x86_64.rpm
.
.
.
< lines snipped for readability>
--> Processing Dependency: proj for package: mysql-workbench-community-8.0.13-1.el7.x86_64
--> Finished Dependency Resolution
Error: Package: mysql-workbench-community-8.0.13-1.el7.x86_64 (/mysql-workbench-community-8.0.13-1.el7.x86_64)
Requires: proj
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
$
As you can see , yum is looking for proj package but it cannot find it in the default repos enabled during OL 7.6 installation.
I tried running the below to find which repo will have this package. But as you can see below, it didn't help ( No Matches Found )
What is the recommended way of finding the repo which a package belongs to so that I can configure that repo and enable it ?
$ sudo yum provides proj
Loaded plugins: langpacks, ulninfo
code | 2.9 kB 00:00:00
mysql-connectors-community | 2.5 kB 00:00:00
mysql-tools-community | 2.5 kB 00:00:00
mysql80-community | 2.5 kB 00:00:00
ol7_UEKR5 | 1.2 kB 00:00:00
ol7_latest | 1.4 kB 00:00:00
(1/2): ol7_latest/x86_64/updateinfo | 756 kB 00:00:02
(2/2): ol7_latest/x86_64/primary | 11 MB 00:00:18
ol7_latest 11690/11690
ol7_latest/x86_64/filelists | 9.6 MB 00:00:11
No matches found
$