hue
hue

Reputation: 1779

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

Upvotes: 4

Views: 5794

Answers (4)

Prroet
Prroet

Reputation: 1

I had a similar problem. If you have a 64 bit ubuntu like me just install pkg-config via
sudo apt install pkg-config
The problem was, that the 32 bit Version of pkg-config was installed. By installing pkg-config again it installs the 64bit version

Upvotes: 0

user2593140
user2593140

Reputation: 11

I used sudo apt-get install libfuse-dev and it worked

Upvotes: 0

Wolfgang
Wolfgang

Reputation: 3540

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

Upvotes: 10

Tofu Snafu
Tofu Snafu

Reputation: 21

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.

Upvotes: 1

Related Questions