Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Pharo 2.0 最近发布了。我下载了它,并尝试运行它:
Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfSeaside30'; load. (Smalltalk at: #ConfigurationOfSeaside30) load.
它完成了,但没有在世界菜单的工具子菜单中创建“海边控制面板”菜单选项。
下一步要采取什么措施?
控制面板是使用 OB 构建的,它不再适用于 Pharo 2.0
因此,您需要以编程方式启动适配器。在 Pharo 2.0 中,默认适配器已成为 Zinc 适配器。您可以通过执行以下表达式来启动它:
ZnZincServerAdaptor startOn: 8080
这会在端口 8080 上启动适配器。