Not enough magic. Died at the same place, but looks like the first
attempt got further. It found the (probably) wrong module and now we
didn't find the module at all.
From here on in, I'm purely guessing. Make appropriate backups before
changing anything!
Just for giggles, do
`
ls -l /usr/share/pyshared/autokey/
ls -l /usr/lib/python2.7/dist-packages/autokey
ls -l /usr/lib/python3.3/dist-packages/autokey
That's where some of these things live. Maybe they got installed under
/usr/lib/python3.3/
instead of under /usr/lib/python2.7/
If so, we could try making a symlink and see what happens
sudo ln -s /usr/lib/python3.3/dist-packages/autokey
/usr/lib/python2.7/dist-packages/autokey
If that fixes it, we can actually move them there.
My hope is that maybe whoever packaged autokey for your distro figured
it was good to go for Python 3.3 and installed it there.
If it's that simple, then you can just uninstall autokey in your package
manager and install it manually. I'm looking into how to do that.
Joe