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
  • 70,934
  • 124
  • 466
  • 653
tom
  • 81
  • 1
  • 1
  • 2

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.

Florian Diesch
  • 86,013
  • 17
  • 224
  • 214
2

Just

sudo apt-get install tcl8.6-dev

fixes the error!

Melebius
  • 11,121
  • 8
  • 50
  • 77
Jiren
  • 21
  • 1