0

This is what i get after executing cmake ..

 - TCL library: /usr/lib/x86_64-linux-gnu/libtcl8.6.so
-- TCL header: TCL_HEADER-NOTFOUND

and after executing "make" 
fatal error: tcl.h: No such file or directory
   19 | #include <tcl.h>
Zanna
  • 69,223
  • 56
  • 216
  • 327
Charu
  • 9
  • 1
  • Does this answer your question? [Error: tcl.h not found (no such file or directory)](https://askubuntu.com/questions/366909/error-tcl-h-not-found-no-such-file-or-directory) – muru Jul 22 '20 at 12:54
  • @muru already tried. – Charu Jul 22 '20 at 12:56
  • Please note that `opensta-dev` package is in [the repositories](https://packages.ubuntu.com/focal/opensta-dev) since 20.04 LTS. – N0rbert Jul 22 '20 at 13:17

1 Answers1

0

Installing tcl-dev worked for me in 16.04 LTS.

sudo apt install tcl-dev
Kulfy
  • 17,416
  • 26
  • 64
  • 103
Vimal
  • 1