3.7.3 to 4.1.1 Upgrade Issues. (RHEL 9.4) #17600
-
I've got an issue right out of the gate upgrading to 4.1.1 from 3.7.3 looks like an issue with some missing files and psycopg this is a production RHEL 9.4 machine with the minimums installed required. Just reading some of the others out there having issues with upgrades I'm not sure the direction of the issue since most folks are running ubuntu and not RHEL 9.4 from what I could see. ` × Preparing metadata (pyproject.toml) did not run successfully. note: This error originates from a subprocess, and is likely not a problem with pip. × Encountered error while generating package metadata. note: This is an issue with the package mentioned above, not pip. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It looks like you're missing the development libraries for PostgreSQL. Try |
Beta Was this translation helpful? Give feedback.
I had to install both postgresql-devel and python3.11-devel as Python.h was also missing.
dnf install postgresql-devel
dnf install python3.11-devel
It did upgrade after these two packages were installed. Hopefully this will give some help to RHEL folks.