0

Is it possible to run MySQL-devel-4.1.22-0.glibc23.x86_64.rpm on my mac, and if so, how?

Stephen Rauch
  • 4,209
  • 14
  • 22
  • 32
  • 2
    Unless the contents of that `.rpm` file are Mach-O binaries compiled for OS X, rather than the generally-expected ELF binaries compiled for Linux, running that `.rpm` is going to require virtualization of Linux. Alternatively, you could compile from source or find a Mac version elsewhere – Fox Apr 09 '17 at 22:05

1 Answers1

1

You can install a RPM package on Mac via

brew install rpm

However, you need to check the RPM contains binaries for Mac. If it's a Linux RPM package (as used in RHEL), the programs won't work.

Related question: Open a RPM on a Mac?

dr_
  • 28,763
  • 21
  • 89
  • 133