1) install opensees as usual. In my case its on Ubuntu 20.04 (Also tested on archlinux).
2) OpenSees works fine at this stage but has no autocomplete feature as it has to be added in tclsh.
3) Install tcl-tclreadline from Ubuntu repository.
4) copy following code into ~/.tclshrc to import the tclreadline package
Code: Select all
if {$tcl_interactive} {
package require tclreadline
::tclreadline::Loop
}
6) Produces following error
So clearly once the tclreadline package loads opensees gives this error. Without this package it works fine. Would be great if this issue is resolved. Autocomplete makes coding and debugging a lot easier.invalid command name "load"