henryouly / flickrfs-ng

A FUSE based Flickr file system
10 stars 0 forks source link

ImportError: No module named libs.fusepy.fuse #2

Open arne-cl opened 10 years ago

arne-cl commented 10 years ago

Dear Henry,

I cloned your repo recursively with git clone --recursive https://github.com/henryouly/flickrfs-ng.git to include all external submodules and installed each of them with sudo python setup.py install, but I still can't get your script running.

$ python flickrfs-ng.py /tmp/flickr
Traceback (most recent call last):
  File "flickrfs-ng.py", line 12, in <module>
    from libs.fusepy.fuse import FUSE, FuseOSError, Operations, LoggingMixIn
ImportError: No module named libs.fusepy.fuse

Kind regards, Arne

marcoabiusoquestar commented 10 years ago

Dear Arne, I runned in your same problem: the cause are missing libs placeholders in the /libs folder. Just create an empty file named "init.py" in the libs folder (check that they are not missing anywhere else) and the libs will be available to the main program.

You might still have some problems cloning/compiling all the libs if you're using and old OS or Python: just le me know and I'll try to help you (if I remember how I did ;-) .

Regards, Marco

Il 04/11/2013 00:43, Arne Neumann ha scritto:

Dear Henry,

I cloned your repo recursively with |git clone --recursive https://github.com/henryouly/flickrfs-ng.git| to include all external submodules and installed them with |sudo python setup.py install|, but I still can't get your script running.

$ python flickrfs-ng.py /tmp/flickr Traceback (most recent call last): File "flickrfs-ng.py", line 12, in from libs.fusepy.fuse import FUSE, FuseOSError, Operations, LoggingMixIn ImportError: No module named libs.fusepy.fuse

Kind regards, Arne

— Reply to this email directly or view it on GitHub https://github.com/henryouly/flickrfs-ng/issues/2.