Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pkg-config --exists fuse fails

I am trying to install fuse-python package, when I run

python setup.py build

It fails, when I checked the contents of setup.py I found this line

if os.system('pkg-config --exists fuse 2> /dev/null') == 0

this line fails. Also when I check PKG_CONFIG_PATH

echo $PKG_CONFIG_PATH

it prints nothing. Any sort of help is appreciated. Thanks in advance

like image 592
hue Avatar asked Dec 21 '22 11:12

hue


2 Answers

In Ubuntu the package is libfuse-dev, so to install sudo apt-get install libfuse-dev should do the trick.

like image 50
Wolfgang Avatar answered Jan 24 '23 10:01

Wolfgang


Most likely you haven't got the fuse development package installed. You don't say which OS you are using, but on openSuSE

zypper install fuse-devel 

should do the trick.

like image 39
Tofu Snafu Avatar answered Jan 24 '23 10:01

Tofu Snafu