rootkiwi / an2linuxserver

Sync Android notifications encrypted to a Linux desktop
Other
402 stars 43 forks source link

Will not work on latest Anaconda Python (3.5), because of pygobject #11

Closed thvasilo closed 7 years ago

thvasilo commented 7 years ago

Using Anaconda Python 3.5 pygobject is not available (although it is available for 3.4 here)

Related issues: here and here.

Not sure if there's much that can be done from your side, just keep an eye out for 3.5 issues with pygobject.

rootkiwi commented 7 years ago

Thanks for letting me know!

thvasilo commented 7 years ago

Just a note, I solved this by changing the shebang line of the server script to #!/usr/bin/python3 from #!/usr/bin/env python3

This ensures that the script calls the system Py3 and not the Anaconda one.