-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Package name
psutil
Package version
higher than 6.0.0.0
PyPI URL
https://pypi.org/project/psutil/
piwheels URL
https://www.piwheels.org/project/psutil/
Python version
- Python 3.9
- Python 3.11
This is for Raspberry Pi users only. If your issue does not relate to usage on Raspberry Pi using the official distro, please don't create an issue here.
yes
The project page includes links to existing issues about the package. Please check this issue doesn't already exist.
yes
Are you the project maintainer?
- I am the maintainer
More information
When I install any version higher than 6.0.0 I get a GLIB_C version mismatch. The strange thing is that I did not encountered this earlier.
As far I can recall, it had worked? Because the release of version 7.0.0 was more than 6 months ago. And I have tested that version and that worked.
When I look at file size, it is now 268KB. But when I installed it earlier this year, it was 272KB in size. Not sure if this is due to how different software calculate sizes, but I would say, some packages are rebuild-ed recently?
Also:
curl -I "https://www.piwheels.org/simple/psutil/psutil-7.0.0-cp36-abi3-linux_armv7l.whl#sha256=15c71f5312cec4d55b23b529579eccbc58e9c36100a906d1de1c66301090f6a9"
HTTP/1.1 200 OK
Date: Sat, 06 Sep 2025 08:16:25 GMT
Server: Apache/2.4.62 (Debian)
Last-Modified: Thu, 04 Sep 2025 12:54:07 GMT
ETag: "42ec0-63df9377a4c4b"
Accept-Ranges: bytes
Content-Length: 274112
Access-Control-Allow-Origin: *Give a Last-Modified: Thu, 04 Sep 2025 12:54:07 GMT. Not sure if this is due to caching servers.
The error when importing the psutil package:
File "/home/pi/TerrariumPI/venv/lib/python3.9/site-packages/psutil/__init__.py", line 95, in <module>
from . import _pslinux as _psplatform
File "/home/pi/TerrariumPI/venv/lib/python3.9/site-packages/psutil/_pslinux.py", line 26, in <module>
from . import _psutil_linux as cext
ImportError: /lib/arm-linux-gnueabihf/libc.so.6: version `GLIBC_2.34' not found (required by /home/pi/TerrariumPI/venv/lib/python3.9/site-packages/psutil/_psutil_linux.abi3.so)This happening on Raspberry PI with Bullseye OS and Python 3.9 in a virtual environment. All packages up to date. The max version of GLIB_C is: 2.30 in file /lib/arm-linux-gnueabihf/libc.so.6.
strings /lib/arm-linux-gnueabihf/libc.so.6 | grep -i glibc_:
GLIBC_2.4
GLIBC_2.5
GLIBC_2.6
GLIBC_2.7
GLIBC_2.8
GLIBC_2.9
GLIBC_2.10
GLIBC_2.11
GLIBC_2.12
GLIBC_2.13
GLIBC_2.14
GLIBC_2.15
GLIBC_2.16
GLIBC_2.17
GLIBC_2.18
GLIBC_2.22
GLIBC_2.23
GLIBC_2.24
GLIBC_2.25
GLIBC_2.26
GLIBC_2.27
GLIBC_2.28
GLIBC_2.29
GLIBC_2.30
GLIBC_PRIVATE
What did I do wrong? Or how can I fix this?