如何安装squeak Smalltalk插件?
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您必须下载 DLL 文件并将其放入 VM 目录中。接下来,在 Squeak 中打开一个工作区并运行:
这将安装访问插件所需的适当 Squeak 类。这应该是您需要做的一切。
如果它不起作用,请尝试检查以下输出:
尝试运行测试后,应列出 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:
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:
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.