Thread: [Flickrfs-users] Flickrfs using MacFUSE?
Brought to you by:
manishrjain
From: Jamila K. <lad...@gm...> - 2007-01-27 22:24:50
|
I saw the announcement, and I was able to use this set of instructions to get gmailfs working under osx, haven't gotten it working in finder yet, don't know why, but I'm having a lot more trouble trying to get flickrfs working, though I too would be quite excited to do so. http://blog.macos.fr/post/2007/01/18/GMailFS-for-Mac-OS-X So far I had problems with line 19 of flickrfs.py, it giving me errors with importing format_exc from traceback. I changed all instances of 'format_exc' to 'format_exception', and those errors stopped. It also doesn't find firefox in /usr/bin (because osx doesn't put firefox there), and it doesn't seem to read my config.txt when I tell it where my browser is. At this point I'm getting this error: Leeloo:~/Desktop/fuse/flickrfs mila$ sudo python flickrfs.py ~/flickr Traceback (most recent call last): File "flickrfs.py", line 1248, in ? server = Flickrfs() File "flickrfs.py", line 502, in __init__ log.info("flickrfs.py:Flickrfs:mountpoint: %s" % repr (self.mountpoint)) File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/site-packages/fuse.py", line 754, in __getattr__ raise AttributeError, "Fuse instance has no attribute '%s'" % meth AttributeError: Fuse instance has no attribute 'mountpoint' peace ladyiconoclast |
From: <han...@pu...> - 2007-01-27 22:37:47
|
Jamila, I am getting exactly the same error as you (I didn't get the one with format_exc though, only the latter): Here is a printout of what I got: imac:~/flickrfs hanpu$ python flickrfs.py ../Flickr Traceback (most recent call last): File "flickrfs.py", line 1248, in ? server =3D Flickrfs() File "flickrfs.py", line 502, in __init__ log.info("flickrfs.py:Flickrfs:mountpoint: %s" % repr(self.mountpoint)) File "/Users/hanpu/python/build/lib.darwin- 8.8.0-Power_Macintosh-2.4/fuse.py", line 754, in __getattr__ raise AttributeError, "Fuse instance has no attribute '%s'" % meth AttributeError: Fuse instance has no attribute 'mountpoint' I think that we need a python guy to tell us what is going on here... 2007/1/27, Jamila Khan <lad...@gm...>: > > I saw the announcement, and I was able to use this set of > instructions to get gmailfs working under osx, haven't gotten it > working in finder yet, don't know why, but I'm having a lot more > trouble trying to get flickrfs working, though I too would be quite > excited to do so. > > http://blog.macos.fr/post/2007/01/18/GMailFS-for-Mac-OS-X > > So far I had problems with line 19 of flickrfs.py, it giving me > errors with importing format_exc from traceback. I changed all > instances of 'format_exc' to 'format_exception', and those errors > stopped. It also doesn't find firefox in /usr/bin (because osx > doesn't put firefox there), and it doesn't seem to read my config.txt > when I tell it where my browser is. At this point I'm getting this > error: > > Leeloo:~/Desktop/fuse/flickrfs mila$ sudo python flickrfs.py ~/flickr > Traceback (most recent call last): > File "flickrfs.py", line 1248, in ? > server =3D Flickrfs() > File "flickrfs.py", line 502, in __init__ > log.info("flickrfs.py:Flickrfs:mountpoint: %s" % repr > (self.mountpoint)) > File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ > python2.3/site-packages/fuse.py", line 754, in __getattr__ > raise AttributeError, "Fuse instance has no attribute '%s'" % meth > AttributeError: Fuse instance has no attribute 'mountpoint' > > > > peace > > ladyiconoclast > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > Flickrfs-users mailing list > Fli...@li... > https://lists.sourceforge.net/lists/listinfo/flickrfs-users > --=20 Brgds/MVH, Hans-G=F6ran Puke |
From: Manish R. J. <man...@gm...> - 2007-01-31 03:05:10
|
Hey guys, While I'd surely like to look into these Mac issues, unfortunately I don't have access to a Mac book. So, I can only suggest the possible solutions, and you'd have to help me by trying them out. To tackle the error that is output here, try commenting out this line (or any other line which just log= s the activity going on in flickrfs), and run it again. Logging is just for informational purposes, and is not mandatory for functioning of flickrfs. -Manish On 1/28/07, Hans-G=F6ran Puke <han...@pu...> wrote: > > Jamila, > I am getting exactly the same error as you (I didn't get the one with > format_exc though, only the latter): > > Here is a printout of what I got: > > imac:~/flickrfs hanpu$ python flickrfs.py ../Flickr > Traceback (most recent call last): > File "flickrfs.py", line 1248, in ? > server =3D Flickrfs() > File "flickrfs.py", line 502, in __init__ > log.info("flickrfs.py:Flickrfs:mountpoint: %s" % repr(self.mountpoint > )) > File "/Users/hanpu/python/build/lib.darwin- > 8.8.0-Power_Macintosh-2.4/fuse.py", line 754, in __getattr__ > raise AttributeError, "Fuse instance has no attribute '%s'" % meth > AttributeError: Fuse instance has no attribute 'mountpoint' > > I think that we need a python guy to tell us what is going on here... > > 2007/1/27, Jamila Khan < lad...@gm...>: > > > > I saw the announcement, and I was able to use this set of > > instructions to get gmailfs working under osx, haven't gotten it > > working in finder yet, don't know why, but I'm having a lot more > > trouble trying to get flickrfs working, though I too would be quite > > excited to do so. > > > > http://blog.macos.fr/post/2007/01/18/GMailFS-for-Mac-OS-X > > > > So far I had problems with line 19 of flickrfs.py, it giving me > > errors with importing format_exc from traceback. I changed all > > instances of 'format_exc' to 'format_exception', and those errors > > stopped. It also doesn't find firefox in /usr/bin (because osx > > doesn't put firefox there), and it doesn't seem to read my config.txt > > when I tell it where my browser is. At this point I'm getting this > > error: > > > > Leeloo:~/Desktop/fuse/flickrfs mila$ sudo python flickrfs.py ~/flickr > > Traceback (most recent call last): > > File "flickrfs.py", line 1248, in ? > > server =3D Flickrfs() > > File "flickrfs.py", line 502, in __init__ > > log.info("flickrfs.py:Flickrfs:mountpoint: %s" % repr > > (self.mountpoint)) > > File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ > > python2.3/site-packages/fuse.py", line 754, in __getattr__ > > raise AttributeError, "Fuse instance has no attribute '%s'" % meth > > AttributeError: Fuse instance has no attribute 'mountpoint' > > > > > > > > peace > > > > ladyiconoclast > > > > > > -----------------------------------------------------------------------= -- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > > your > > opinions on IT & business topics through brief surveys - and earn cash > > > > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID= =3DDEVDEV > > _______________________________________________ > > Flickrfs-users mailing list > > Fli...@li... > > https://lists.sourceforge.net/lists/listinfo/flickrfs-users > > > > > > -- > Brgds/MVH, > Hans-G=F6ran Puke > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > > _______________________________________________ > Flickrfs-users mailing list > Fli...@li... > https://lists.sourceforge.net/lists/listinfo/flickrfs-users > > > --=20 Engg. Intern, Google HQ Comp. Engg. Final Year NTU, Singapore |
From: Manish R. J. <man...@gm...> - 2007-01-31 05:24:32
|
Related: https://sourceforge.net/tracker/index.php?func=3Ddetail&aid=3D1504522&group= _id=3D151995&atid=3D782752 -Manish On 1/31/07, Manish Rai Jain <man...@gm...> wrote: > > Hey guys, > > While I'd surely like to look into these Mac issues, unfortunately I don'= t > have access to a Mac book. So, I can only suggest the possible solutions, > and you'd have to help me by trying them out. To tackle the error that is > output here, try commenting out this line (or any other line which just l= ogs > the activity going on in flickrfs), and run it again. Logging is just for > informational purposes, and is not mandatory for functioning of flickrfs. > > -Manish > > > On 1/28/07, Hans-G=F6ran Puke <han...@pu...> wrote: > > > > Jamila, > > I am getting exactly the same error as you (I didn't get the one with > > format_exc though, only the latter): > > > > Here is a printout of what I got: > > > > imac:~/flickrfs hanpu$ python flickrfs.py ../Flickr > > Traceback (most recent call last): > > File "flickrfs.py", line 1248, in ? > > server =3D Flickrfs() > > File " flickrfs.py", line 502, in __init__ > > log.info("flickrfs.py:Flickrfs:mountpoint: %s" % repr( > > self.mountpoint)) > > File "/Users/hanpu/python/build/lib.darwin- > > 8.8.0-Power_Macintosh-2.4/fuse.py", line 754, in __getattr__ > > raise AttributeError, "Fuse instance has no attribute '%s'" % meth > > AttributeError: Fuse instance has no attribute 'mountpoint' > > > > I think that we need a python guy to tell us what is going on here... > > > > 2007/1/27, Jamila Khan < lad...@gm...>: > > > > > > I saw the announcement, and I was able to use this set of > > > instructions to get gmailfs working under osx, haven't gotten it > > > working in finder yet, don't know why, but I'm having a lot more > > > trouble trying to get flickrfs working, though I too would be quite > > > excited to do so. > > > > > > http://blog.macos.fr/post/2007/01/18/GMailFS-for-Mac-OS-X > > > > > > So far I had problems with line 19 of flickrfs.py, it giving me > > > errors with importing format_exc from traceback. I changed all > > > instances of 'format_exc' to 'format_exception', and those errors > > > stopped. It also doesn't find firefox in /usr/bin (because osx > > > doesn't put firefox there), and it doesn't seem to read my config.txt > > > when I tell it where my browser is. At this point I'm getting this > > > error: > > > > > > Leeloo:~/Desktop/fuse/flickrfs mila$ sudo python flickrfs.py ~/flickr > > > Traceback (most recent call last): > > > File "flickrfs.py", line 1248, in ? > > > server =3D Flickrfs() > > > File "flickrfs.py", line 502, in __init__ > > > log.info(" flickrfs.py:Flickrfs:mountpoint: %s" % repr > > > (self.mountpoint)) > > > File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib= / > > > python2.3/site-packages/fuse.py", line 754, in __getattr__ > > > raise AttributeError, "Fuse instance has no attribute '%s'" % > > > meth > > > AttributeError: Fuse instance has no attribute 'mountpoint' > > > > > > > > > > > > peace > > > > > > ladyiconoclast > > > > > > > > > ---------------------------------------------------------------------= ---- > > > Take Surveys. Earn Cash. Influence the Future of IT > > > Join SourceForge.net's Techsay panel and you'll get the chance to > > > share your > > > opinions on IT & business topics through brief surveys - and earn cas= h > > > > > > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CI= D=3DDEVDEV > > > _______________________________________________ > > > Flickrfs-users mailing list > > > Fli...@li... > > > https://lists.sourceforge.net/lists/listinfo/flickrfs-users > > > > > > > > > > > -- > > Brgds/MVH, > > Hans-G=F6ran Puke > > > > > > -----------------------------------------------------------------------= -- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > > your > > opinions on IT & business topics through brief surveys - and earn cash > > > > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID= =3DDEVDEV > > > > _______________________________________________ > > Flickrfs-users mailing list > > Fli...@li... > > https://lists.sourceforge.net/lists/listinfo/flickrfs-users > > > > > > > > > -- > Engg. Intern, Google HQ > > Comp. Engg. Final Year > NTU, Singapore --=20 Engg. Intern, Google HQ Comp. Engg. Final Year NTU, Singapore |