libplist icon indicating copy to clipboard operation
libplist copied to clipboard

Build fails with cython error?

Open SoPat712 opened this issue 3 years ago • 2 comments

image

Tried building libimobiledevice-git on Manjaro, build failed. Realized that libplist-git was causing the problem. I tried to install from source using ./autogen.sh and make, but make keeps failing at the point screenshotted above.

Thanks for your help in advance.

I've tried changing python 3.10.7, 2.7.15, and 3.9.0, none of which have worked.

SoPat712 avatar Dec 05 '22 22:12 SoPat712

Changing to python3 fixed it for me. It was picking up a python2 bin I have installed too. Make sure you do

$ PYTHON=<path-to-your-python3-bin> ./autogen.sh

and try again.

alediaferia avatar Dec 27 '22 10:12 alediaferia

I had the same issue, I have ASDF which manages multiple python versions, to fix it I ran

PYTHON=/usr/bin/python3 ./autogen.sh

thanks @alediaferia

HMaker avatar Jun 09 '23 21:06 HMaker