I just installed Ubuntu 12.04, I am a big fan of Geany, but now i don't have the terminal at the base of the window. I have tried to change the terminal preferences, without success. any ideas?
Asked
Active
Viewed 4.0k times
24
-
1You need to install libvte -- but you don't need to install libvte-dev. This is only needed for compiling purpose. – frlan Nov 21 '13 at 20:05
4 Answers
26
This is because Ubuntu12 lacks libvte.so
, or at least the version Geany uses to emulate the terminal. Try this command
sudo apt-get install libvte-dev

kiri
- 28,246
- 16
- 81
- 118

Manokadobo
- 292
-
8Only libvte9 is required.... the -dev installs a lot of unneeded things. – JorgeeFG May 08 '14 at 12:11
-
2
11
You can only install to enable the terminal tab: libvte9

David Aparicio
- 111
-
This is basically saying the same thing as the accepted answer above, right? – Tom Brossman Oct 20 '12 at 10:30
-
Thanks, that helped me. In my installation (ubuntu 12.04) I had
libvte-2.90-9
already installed and because of some problem I was't able to installlibvte-dev
. – Betlista Jan 04 '13 at 20:36
8
Geany uses GTK+ 2.0 so you need libvte9
sudo apt-get install libvte9

Arcadie
- 79
- 1
- 2
-
This is the answer, no need to install libvte-dev which installs 90MB of packages. – JorgeeFG Mar 17 '15 at 18:46
1
Did You try to enable Menu-> View -> Show Message Window ? This will enable Geany bottom panel, where on left You will have "Terminal" tab ( the last one ).

dydek
- 141
-
Yes the message window is visable, but does not have a terminal tab. as seen here --> http://goo.gl/41Ihu – ahs3 May 19 '12 at 22:30