[opensuse] Anyone got calibre ebook reader to run?
Running openSUSE 12.3 with KDE 4.10.5 I've just installed 'Calibre' using YaST/Software management. When I try to run it, it fails with the following run time error: 20:02 bob@barrowhillfarm:~> calibre Traceback (most recent call last): File "/usr/bin/calibre", line 20, in <module> sys.exit(main()) File "/usr/lib64/calibre/calibre/gui2/main.py", line 417, in main app, opts, args, actions = init_qt(args) File "/usr/lib64/calibre/calibre/gui2/main.py", line 84, in init_qt from calibre.gui2.ui import Main File "/usr/lib64/calibre/calibre/gui2/ui.py", line 31, in <module> from calibre.gui2.widgets import ProgressIndicator File "/usr/lib64/calibre/calibre/gui2/widgets.py", line 21, in <module> from calibre.gui2.progress_indicator import ProgressIndicator as _ProgressIndicator File "/usr/lib64/calibre/calibre/gui2/progress_indicator/__init__.py", line 15, in <module> pi_error) RuntimeError: Failed to load the Progress Indicator plugin: the sip module implements API v9.0 to v9.2 but the progress_indicator module requires API v10.0 I'm not sure how to proceed... Bob -- Bob Williams System: Linux 3.7.10-1.16-desktop Distro: openSUSE 12.3 (x86_64) with KDE Development Platform: 4.10.5 "release 4" Uptime: 18:00pm up 1 day 7:00, 4 users, load average: 0.43, 0.68, 0.72 -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 8/23/2013 12:12 PM, Bob Williams wrote:
Running openSUSE 12.3 with KDE 4.10.5
I've just installed 'Calibre' using YaST/Software management. When I try to run it, it fails with the following run time error:
20:02 bob@barrowhillfarm:~> calibre Traceback (most recent call last): File "/usr/bin/calibre", line 20, in <module> sys.exit(main()) File "/usr/lib64/calibre/calibre/gui2/main.py", line 417, in main app, opts, args, actions = init_qt(args) File "/usr/lib64/calibre/calibre/gui2/main.py", line 84, in init_qt from calibre.gui2.ui import Main File "/usr/lib64/calibre/calibre/gui2/ui.py", line 31, in <module> from calibre.gui2.widgets import ProgressIndicator File "/usr/lib64/calibre/calibre/gui2/widgets.py", line 21, in <module> from calibre.gui2.progress_indicator import ProgressIndicator as _ProgressIndicator File "/usr/lib64/calibre/calibre/gui2/progress_indicator/__init__.py", line 15, in <module> pi_error) RuntimeError: Failed to load the Progress Indicator plugin: the sip module implements API v9.0 to v9.2 but the progress_indicator module requires API v10.0
I'm not sure how to proceed...
Bob
I install it from the Calibre website and it works perfectly every time. (Here is where someone is bound to jump in and complain about that, right Carlos?) I have a script in /root/bin for do the update, which is nothing but a one line python command from this web page: http://calibre-ebook.com/download_linux python -c "import sys; py3 = sys.version_info[0] > 2; u = __import__('urllib.request' if py3 else 'urllib', fromlist=1); exec(u.urlopen('http://status.calibre-ebook.com/linux_installer').read()); main()" (above is one long line, even tho it wrapped here). I do this because the packagers at OpenSuse are at least a couple releases behind. I use calibre extensively and have hunted around and found the plug-ins that automatically rip out the DRM in all the ebooks I purchase. These then work perfectly on any device I own. Note: I've had two ebook providers die/go out of business on me, and once I buy a book (and I always buy them, authors need money too), they all go through this process. -- _____________________________________ ---This space for rent--- -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 23/08/13 20:24, John Andersen wrote:
On 8/23/2013 12:12 PM, Bob Williams wrote:
Running openSUSE 12.3 with KDE 4.10.5
I've just installed 'Calibre' using YaST/Software management. When I try to run it, it fails with the following run time error:
20:02 bob@barrowhillfarm:~> calibre Traceback (most recent call last): File "/usr/bin/calibre", line 20, in <module> sys.exit(main()) File "/usr/lib64/calibre/calibre/gui2/main.py", line 417, in main app, opts, args, actions = init_qt(args) File "/usr/lib64/calibre/calibre/gui2/main.py", line 84, in init_qt from calibre.gui2.ui import Main File "/usr/lib64/calibre/calibre/gui2/ui.py", line 31, in <module> from calibre.gui2.widgets import ProgressIndicator File "/usr/lib64/calibre/calibre/gui2/widgets.py", line 21, in <module> from calibre.gui2.progress_indicator import ProgressIndicator as _ProgressIndicator File "/usr/lib64/calibre/calibre/gui2/progress_indicator/__init__.py", line 15, in <module> pi_error) RuntimeError: Failed to load the Progress Indicator plugin: the sip module implements API v9.0 to v9.2 but the progress_indicator module requires API v10.0
I'm not sure how to proceed...
Bob
I install it from the Calibre website and it works perfectly every time. (Here is where someone is bound to jump in and complain about that, right Carlos?)
I have a script in /root/bin for do the update, which is nothing but a one line python command from this web page: http://calibre-ebook.com/download_linux
python -c "import sys; py3 = sys.version_info[0] > 2; u = __import__('urllib.request' if py3 else 'urllib', fromlist=1); exec(u.urlopen('http://status.calibre-ebook.com/linux_installer').read()); main()"
(above is one long line, even tho it wrapped here).
I do this because the packagers at OpenSuse are at least a couple releases behind.
I use calibre extensively and have hunted around and found the plug-ins that automatically rip out the DRM in all the ebooks I purchase. These then work perfectly on any device I own.
Note: I've had two ebook providers die/go out of business on me, and once I buy a book (and I always buy them, authors need money too), they all go through this process.
Thanks, John, that worked a treat. My first ereader was the Irex iLiad, which ran linux. As you say, it went out of business soon after Amazon released the Kindle. Bob -- Bob Williams System: Linux 3.7.10-1.16-desktop Distro: openSUSE 12.3 (x86_64) with KDE Development Platform: 4.10.5 "release 4" Uptime: 18:00pm up 1 day 7:00, 4 users, load average: 0.43, 0.68, 0.72 -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Friday, 2013-08-23 at 12:24 -0700, John Andersen wrote:
I install it from the Calibre website and it works perfectly every time. (Here is where someone is bound to jump in and complain about that, right Carlos?)
It is not me :-) I also install it from the Calibre site, but I know that the packagers here say that there are security issues with the upstream version that you should be aware. That's the only thing I say.
I use calibre extensively and have hunted around and found the plug-ins that automatically rip out the DRM in all the ebooks I purchase. These then work perfectly on any device I own.
Note: I've had two ebook providers die/go out of business on me, and once I buy a book (and I always buy them, authors need money too), they all go through this process.
That's something I need to learn. I also buy the ebooks I read, but I need to learn how to make backups of them so that if the device or the company dies, my books do not die with them. - -- Cheers, Carlos E. R. (from 12.3 x86_64 "Dartmouth" at Telcontar) -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (GNU/Linux) iEYEARECAAYFAlIX7d0ACgkQtTMYHG2NR9WnwwCghijC6Zmee2NleZW4tdiH7Krq C50AnAuWq4nGmHCG5WgiZWTxO2oO3RRN =hAwd -----END PGP SIGNATURE----- -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On Friday, 2013-08-23 at 12:24 -0700, John Andersen wrote:
Note: I've had two ebook providers die/go out of business on me, and once I buy a book (and I always buy them, authors need money too), they all go through this process.
Same thing happened to me with audiobooks. But in this case the site, WeRead4You.com was delivering clean non-drm audio files and the only things I lost were things I hadn't downloaded and saved my own copies of after listening. I was using them because I was fed up with Audible.com drm. (I paid Audible a lot over 13 years and 500-600 titles so far. I'm done being thanked for that by being treated like a thief.) Now I use Ambling Books mostly. Also drm-free. But since Audible still has by far the largest library, I still get stuff from Audible once in a while. For those, there are a few different ways to strip the drm, but they all suck because it's not really stripping the drm but playing and re-recording, which means loss on top of loss. Some methods suck more than others though. I have not managed to get the necessary parts to work on linux though. It requires the audible desktop windows software and an old activex library they once offered and have been trying to hide and pretend never existed ever since, and a particularly good windows audio converter app called dbpoweramp and a particular mp3-writer plugin, Helix from Real networks. When you have all that, you can convert at about 400x speed on a reasonable cpu (not 400%, 400x!) and it can use multiple threads, and that's 400x _per cpu core_, it even gains 10% to 20% using all threads of a hyperthreaded cpu. It does 70x to 90x speed even on a lowly atom netbook with a lowly 5300 rpm 1.8" hard drive and 1G ram. And it's geared for batch operations and has nice windows explorer integration so you can right click on files and convert them and edit the id3 tags and add cover art, edit the same id3 tag the same way on an entire batch of files, etc. Most other audible.com drm removers just play at 1:1 speed. It takes 36 hours to convert a 36 hour book! I saw one just now that proudly brags that it runs at 5x speed. WOW! 5x!!!! http://swankandswill.blogspot.com/2010/07/audiblecom-without-drm.html -- bkw -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
participants (4)
-
Bob Williams
-
Brian K. White
-
Carlos E. R.
-
John Andersen