如何安装squeak Smalltalk插件?

发布于 2024-11-27 17:12:54 字数 381 浏览 0 评论 0原文

我正在尝试将 squeakSSL 与 WebClient 一起使用,squeakSSL 页面显示:

要安装 SqueakSSL,您需要下载并安装该插件的二进制版本,然后通过以下方式安装 SqueakSSL:

(Installer ss)
project: 'SqueakSSL';
    install: 'SqueakSSL-Core';
    install: 'SqueakSSL-Tests';

我下载了提到的包,它只是一个dll文件。我在网上找不到如何安装吱吱声插件的方法。我尝试将其放入 VM 和 Image 目录中,但 squeakSSL 测试失败。

如何安装吱吱声插件?

I am trying to use squeakSSL with WebClient, the squeakSSL page says:

To install SqueakSSL you need to download and install the binary version of the plugin and then install SqueakSSL via:

(Installer ss)
project: 'SqueakSSL';
    install: 'SqueakSSL-Core';
    install: 'SqueakSSL-Tests';

I downloaded the mentioned package, and it is just a dll file. I can't find anywhere on the net how you install a squeak plugin. I tried putting it in the VM and Image directories, but the squeakSSL tests fail.

How do you install a squeak plugin?

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

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

发布评论

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

评论(1

绝不放开 2024-12-04 17:12:54

首先,您必须下载 DLL 文件并将其放入 VM 目录中。接下来,在 Squeak 中打开一个工作区并运行:

(Installer ss)
    project: 'SqueakSSL'; 
    install: 'SqueakSSL-Core'; 
    install: 'SqueakSSL-Tests'.

这将安装访问插件所需的适当 Squeak 类。这应该是您需要做的一切。

如果它不起作用,请尝试检查以下输出:

Smalltalk listLoadedModules

尝试运行测试后,应列出 SSL 插件。如果插件已列出,但测试仍然失败,则可能是某些内容(Smalltalk 类或二进制插件)已过时。

First, you have to download the DLL file and put it in your VM directory. Next, open a workspace in Squeak and run:

(Installer ss)
    project: 'SqueakSSL'; 
    install: 'SqueakSSL-Core'; 
    install: 'SqueakSSL-Tests'.

This will install the appropriate Squeak classes necessary to access to plugin. This should be everything you need to do.

If it doesn't work, try checking the output of:

Smalltalk listLoadedModules

The SSL plugin should be listed after you tried running a test. If the plugin is listed, but the tests still fail it's probable that something -- either the Smalltalk classes or the binary plugin -- is outdated.

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