Eu estava tentando executar um indicador para o bulbo de pressão sem sucesso. Eu tentei correr através do terminal quando notei python3 não pode importar gi
bin > python3 pushbullet-indicator
Traceback (most recent call last):
File "pushbullet-indicator", line 26, in <module>
import gi
ImportError: No module named 'gi'
bin >
Tentando uma importação manual.
~ > python3
Python 3.4.1 (default, Sep 27 2014, 09:00:29)
[GCC 4.8.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import gi
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'gi'
>>>
mas por algum motivo o Python2 pode?
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import gi
>>>
Eu tenho o Anaconda instalado. Eu estou tentando importar o gi na instalação do sistema do python3. Espero que seja a terminologia correta. python3-gi está instalado.
Ainda mais estranho é que eu posso rodar o indicador-cpufreq
Vocês têm alguma ideia ou recomendação? Obrigado por qualquer ajuda!