I am running into error "package require cmdline" while making a build and need this package, how can I install this package?
I Looked at How to install a Tcl package? which doesnt exactly tell how to do that
I am running into error "package require cmdline" while making a build and need this package, how can I install this package?
I Looked at How to install a Tcl package? which doesnt exactly tell how to do that
You could:
install it into your home directory:
./configure --prefix=$HOME/tcl
make install
when you want to use one of the tcllib packages:
set auto_path [linsert $auto_path 0 $env(HOME)/tcl/lib]
package require cmdline
yum install tcllib? (I don't know what package manager that distro uses)
Loaded plugins: security Setting up Install Process public_ol6_UEKR3_latest | 1.2 kB 00:00 public_ol6_latest | 1.4 kB 00:00 No package tcllib available. Error: Nothing to do
curl or wget to download it.