gawen / apachefs

File tree served by Apache easily mounted in your Unix filesystem.
MIT License
3 stars 1 forks source link

libfuse in macos is not found #2

Open fser opened 11 years ago

fser commented 11 years ago

After the install described in the readme, apachefs does not work under mac os x 10.7.5

File "./apachefs.py", line 17, in import fuse File "/Library/Python/2.7/site-packages/fuse.py", line 69, in raise EnvironmentError('Unable to find libfuse') EnvironmentError: Unable to find libfuse

gawen commented 11 years ago

Thank you.

Looks like FUSE is not installed. Is it ?

fser commented 11 years ago

I did run pip install, which (I guess, failed). I should give you a feedback whenever I remember how to properly setup environment with python, which (I think) is a pain.

gawen commented 11 years ago

pip install fusepy is only a Python binding to the libfuse. It is indeed not written in the README, but you still need to install fuse for Mac before using the apachefs.

Redo pip install fusepy and check if fusepy is well installed. If so, install macfuse and retry (without or with root priviledge).

Tell me how it's going on.

Thank you.