Link to home
Start Free TrialLog in
Avatar of sreenathk
sreenathkFlag for India

asked on

OTCL Instalation in Linux.

Hi,

 for my project, I need to install TCL/tk and OTCL in my Linux PC. I installed TCL versions (8.4 & 8.4) Tk version (8.5) in my Linux PC. It is successful & I can run TCL Tk.  But when I am installing the OTCL . (ver 1.11) It gave me a error .. saying TCL installation is not proper.. The error is

./configure  command gave this error in the end..

configure: error: Installation of tcl seems incomplete or can't be found automatically.
Please correct the problem by telling configure where tcl is
using the argument --with-tcl=/path/to/package
(perhaps after installing it),
or the package is not required, disable it with --with-tcl=no.


Any body have an idea how to solve it..

Thanks,
Sreenath
Avatar of pjedmond
pjedmond
Flag of United Kingdom of Great Britain and Northern Ireland image

Instead of typing:

./configure

you need to type:

./configure --with-tcl=/path/to/package

as I presume you need to use tcl in your project? If not, then

./configure --with-tcl=no

is fine, but you will not be able to use tcl in your OTCL.

to find the correct path to package, type:

which tcl

and you should get the required info.
Avatar of ico2
ico2

It might be that you installed tcl either in /usr/local, or in /opt/tcltk8.4

try those as the --with-tcl= option (as pjedmond says)
Relevant questions: Distro of linux, and version? How did you install tcl and tk? Source or prepackaged?

-- Glenn
Avatar of sreenathk

ASKER

Hi,

 I installed TCK & TK with the source.. I installed both using ./configure  
make   & make install commands... They are installed in /usr/local/ directory.  Both TCL & TK are working fine...  BUt during OTCL installation it gives this error. If i say
 ./configure --with-tcl=no.

It is giving http.tcl not found.. But it is available. I tried installing tcl again and again.. But it is same problem..

Please help me.
Sreenath
ASKER CERTIFIED SOLUTION
Avatar of Gns
Gns

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial