8

Appindicator is not available on Ubuntu 13.10?

jason@jz:~$ python
Python 2.7.5+ (default, Sep 19 2013, 13:48:49) 
[GCC 4.8.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import appindicator
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named appindicator
>>> 

Is there an alternative of it? Or can I install it myself?

Thanks in advance.

Cao Dongping
  • 969
  • 1
  • 12
  • 29

3 Answers3

20
sudo apt-get install python-appindicator
starrify
  • 14,307
  • 5
  • 33
  • 50
James King
  • 6,229
  • 3
  • 25
  • 40
1

Probably should aim for Python 3 instead:

sudo apt-get install gir1.2-appindicator

Andy
  • 49,085
  • 60
  • 166
  • 233
Bernmeister
  • 267
  • 9
  • 17
0

Yes, you can install it yourself. I'd recommend looking at pip for installing additional python packages.

jazzpi
  • 1,399
  • 12
  • 18