-
Notifications
You must be signed in to change notification settings - Fork 23
No mdule named fuse? #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
You sure you installed python-fuse ? |
Positive |
Wait, aren't python modules installed with a setup.py ? |
I have the same issue, but in line 35 - OSX 10.10.4 - Python 2.7 - FUSE and python-fuse installed. Traceback (most recent call last):
File "./acd", line 35, in <module>
class ACDFS(fuse.Fuse):
AttributeError: 'module' object has no attribute 'Fuse' This is the python shell that show 'fuse' has been installed >>> import fuse
>>> fuse
<module 'fuse' from '/Users/stevenvo/anaconda/lib/python2.7/site-packages/fuse.pyc'> |
I'm having the same issue as stevenvo :( |
Anyone figure it out? Same error here and I know I have python fuse installed. Same use case as stevenvo. |
// In case someone needs a possible solution I found for this Had the same error (with a program named obtheme), it issued the same error message (line 27 : from fuse import Fuse, Stat ) I had installed python-fuse, python2-llfuse, python3-llfuse, fuse, fuse-libs, fuse-devel) and the issue persisted. Tried the other way around, I installer fuse-python and it worked. Hope this will help |
I'm using debian 8 and have the same issue. $ dpkg -l |grep fuse |
The same problem. Debian 8 |
the same problem . Debian GNU/Linux 9.9 (stretch) (GNU/Linux 4.9.0-9-amd64 x86_64\n) |
I just installed fuse and attempted to run ./acd
Following is the console output:
Traceback (most recent call last):
File "./acd", line 9, in
import fuse
ImportError: No module named fuse
Fuse was installed using latest version on Ubuntu 15.04 x64 using ./configure, make, make install
ACD was downloaded and executed as ./acd
Am I missing something?
The text was updated successfully, but these errors were encountered: