hschauhan / gosync

An Opensource Google Drive client written in Python
https://hschauhan.github.io/gosync/
GNU General Public License v2.0
281 stars 57 forks source link

Not very sure about doing everything correct #65

Open MrAnsgar opened 1 year ago

MrAnsgar commented 1 year ago

I hope I've created my credentials from Google correctly. After that I've launched GoSync and this is the result: Traceback (most recent call last): File "/usr/local/bin/GoSync", line 5, in <module> from GoSync.GoSync import main File "/usr/local/lib/python3.10/dist-packages/GoSync/GoSync.py", line 20, in <module> import sys, os, wx, GoSyncController, GoSyncModel ModuleNotFoundError: No module named 'wx'

Nothing happens

hschauhan commented 1 year ago

Did you install GoSync via pip? I believe wxpython is not installed on your system. If you are on debian based system you can install wxpython by command sudo apt-get install python3-wxgtk4.0.

If you install via pip, pip will compile wxpython on the fly.