在 Perl 中新建 Tcl 解释器时更改 Tcl.pm 拾取的 Tcl shell
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,看来正在实例化一个有效的 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...