Psutil: fail to build a wheel for psutil

Created on 3 Apr 2018  ·  3Comments  ·  Source: giampaolo/psutil

I have tried to install psutil on termux(android nougat) but when i write
pip install psutil it send me this error on red

Command "/data/data/com.termux/files/usr/bin/python -u -c "import setuptools, tokenize;__file__='/data/data/com.termux/files/usr/tmp/pip-build-alehd4ez/psutil/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /data/data/com.termux/files/usr/tmp/pip-7kvh5ilb-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /data/data/com.termux/files/usr/tmp/pip-build-alehd4ez/psu

What surprised is thad I used to install it but this time it doesn't work o don't know why !!!

bug wheels

Most helpful comment

The package arm-linux-androideabi-clang seems to be the source of this error, implying you need clang installed. Once you resolve that, you will find that some source files like crypt.h are not present.

The following resolved this issue for me:

apt install python-dev clang libcrypt-dev

Note: I'm not sure that python-dev is actually needed here, but I did install it while troubleshooting and it's generally nice to have. :smile:

All 3 comments

If there some one who can help me

The package arm-linux-androideabi-clang seems to be the source of this error, implying you need clang installed. Once you resolve that, you will find that some source files like crypt.h are not present.

The following resolved this issue for me:

apt install python-dev clang libcrypt-dev

Note: I'm not sure that python-dev is actually needed here, but I did install it while troubleshooting and it's generally nice to have. :smile:

its work.. thks

Was this page helpful?
0 / 5 - 0 ratings