6

I installed xbindkeys via sudo apt-get install xbindkeys

Now when I run xbindkeys_show I get:

$ xbindkeys_show 
/usr/bin/xbindkeys_show: 3: exec: wish: not found

The question is: How can I run this program? What dependencies are missing?

Alfred
  • 193
  • 1
  • 4

2 Answers2

10

In 13.10 I do not have a wish package.

 (0)asus-romano:~% apt-file search /usr/bin/wish
 tk: /usr/bin/wish-default
 tk8.4: /usr/bin/wish8.4
 tk8.5: /usr/bin/wish8.5
 tk8.6: /usr/bin/wish8.6

So I suppose the package is tk (and probably tcl)

 apt-get install tcl tk 

(but this is a bug in packaging... if it's needed should be a dependency)

Rmano
  • 31,627
  • 16
  • 118
  • 187
4

You need to install the package wish.

The package xbindkeys only suggests wish so it is not installed as a dependency by default.

Use something like

sudo apt-get install --install-suggests xbindkeys

to install a package with the packages it suggests

Florian Diesch
  • 86,013
  • 17
  • 224
  • 214
  • Exactly like Rmano said there is no wish in Ubuntu 13.10. I looked for that :P. Maybe I should have mentioned that. – Alfred Jan 30 '14 at 17:26