I'm newly in charge of system administration tasks, with a Rocky Linux 8 (Rocky Linux 8.6) server that has a couple dozen users. I want all users to be able to use numpy
and matplotlib
in Python3 on this server.
I've recently learned (through the warning given when pip install
ing as root...) that I should NOT be using pip as the root user, so I've instead installed numpy
using yum as root: yum install python3-numpy
- this works fine.
However, when I try (as root): yum install python3-matplotlib
, I get the following:
Error:
Problem: conflicting requests
- nothing provides libqhull.so.7()(64bit) needed by python3-matplotlib-3.0.3-4.el8.x86_64
(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)
How do I get libqhull
installed on my system? Or - do I need to do something different for all users to have access to numpy and matplotlib in Python3?