在 Perl 中新建 Tcl 解释器时更改 Tcl.pm 拾取的 Tcl shell

发布于 2024-10-26 10:33:12 字数 199 浏览 0 评论 0原文

use Tcl;

$interp = Tcl->new;

这就是我在 Perl 脚本中实例化 Tcl 解释器的方式。

它使用/创建的 Tcl shell(我不确定这里发生了什么)与我想使用的 tclsh 不同。

我无法访问 Perl 构建,所以我希望有另一种方法。

谢谢! 乔

use Tcl;

$interp = Tcl->new;

Is how Im instantiating my Tcl interpreter within my Perl script.

The Tcl shell it uses/creates(im not sure what happens here) is different from the tclsh I would like to use.

I do not have access to the Perl build so im hoping there is another way.

Thanks!
Joe

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑红尘 2024-11-02 10:33:12

好吧,看来正在实例化一个有效的 shell。如果我将 auto_path 指向包含 Tcl 安装的“lib”目录中的软件包的目录,那么一切都会起作用。感谢 Stack Overflow 成为我的编程傻瓜……

Ok it appears that a shell that works is being instantiated. If I point the auto_path to the directory containing the packages that are in the 'lib' directory of the Tcl install then it all works. Thanks to Stack Overflow for being my programming dummy...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文