
Al intentar iniciar Dropbox, aparece
$ dropbox start
Starting Dropbox...
The Dropbox daemon is not installed!
Run "dropbox start -i" to install the daemon
Siguiendo las instrucciones,
$ dropbox start -i
Starting Dropbox...Traceback (most recent call last):
File "/usr/bin/dropbox", line 1443, in start
download()
File "/usr/bin/dropbox", line 294, in download
import gi
ModuleNotFoundError: No module named 'gi'
Luego intenté instalar gi
$ pip install gi
Collecting gi
Could not find a version that satisfies the requirement gi (from versions: )
No matching distribution found for gi
La versión:
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 19.04
Release: 19.04
Codename: disco
Respuesta1
Asegúrate de no tener habilitado un entorno Conda, incluido el raíz, y ejecútalo como "sudo dropbox start -i".
Respuesta2
Puede omitir la interfaz GTK, lo que evitará cargar este gi
módulo. Ejecute el script de Dropbox:
$ DISPLAY='' dropbox start -i
Y recibirás los mensajes en tu consola en lugar de en Windows GTK.