Wow Im not sure why I didn't get a notice that someone replied! I better go check my notifications

Im not on AlmaLinux at this point, still CentOS, but yeah my guess is that my list won't be any smaller. Now Im trying to figure out how do you run any decent python scripts if I can't upgrade anything!
I found this also
I tried to install PyTorch on my Linux CentOS 7.3. I downloaded its package, ran this command and got this error: sudo python setup.py install running install running build_deps CMake Error at
stackoverflow.com
Which makes it sound like I could have them run side by side. For example right now cPanel python default is 2.x and I have python 3 installed and can call python3 same with pip and pip3 so sounds like I might be able to do it with this also by running
sudo yum -y install cmake3
Then I would just need to make sure that python3 and pip3 are both using cmake3.. which sounds like this might work:
export CMAKE=/path/to/cmake3
Although it also sounds like I could do some kind of virtual environment, but Im not 100% sure what it's talking about, maybe tmux?
"Additionally, if you only want to use CMake 3 for a specific project, you can set the CMAKE environment variable within the project's virtual environment or before running the specific pip3 install command for that project. This allows you to control the CMake version on a per-project basis."