Last active
December 10, 2015 20:58
-
-
Save sridharraman/4491564 to your computer and use it in GitHub Desktop.
Steps used to fix Calibre in OFFICE-LAPTOP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Problem: | |
| Pressing Tab Key used to crash Calibre. | |
| Solution: | |
| 1) sudo python -c "import urllib2; exec urllib2.urlopen('http://status.calibre-ebook.com/linux_installer').read(); main()" | |
| 2) Try uninstalling qt-at-spi or setting an environment variable to disable ACCESSIBILITY. | |
| 3) http://calibre-ebook.com/download_linux | |
| * sudo 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()" -> WORKED | |
| 4) sudo add-apt-repository ppa:n-muench/calibre |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment