8

I'm trying to install something that uses Tcl and it requires the config file tclConfig. I've installed tcl via sudo apt-get install tcl8.5 but after doing a search there isn't such a file.

Did I miss a step somewhere?

Jorge Castro
  • 71,754
tom
  • 81

2 Answers2

6

According to Ubuntu Packages Search there is no file named tclConfig. A close match is /usr/lib/tcl8.5/tclConfig.sh (package tcl8.5-dev).

If that isn't what you need please post what you try to install and any error messages you get.

2

Just

sudo apt-get install tcl8.6-dev

fixes the error!

Melebius
  • 11,431
  • 9
  • 52
  • 78
Jiren
  • 21