Where do I have to install Add-ons on Plone

I'm new on Plone, and I'm following Plone Training tutorial. I'm trying Plone with Docker image from here.

But in step 13, extending with new components, I don't know surely where I have to install the new packages, I try it on different sections:

buildout.cfg:

[plonesite]
  eggs =
    collective.easyform
    plone.app.mosaic

[instance]
  eggs =
    collective.easyform
    plone.app.mosaic

[versions]
  collective.easyform = 2.1.5
  plone.app.mosaic = 2.2.2

I can't get those packages appears on /@@overview-controlpanel to activate them.

Upvotes: 1

Views: 133

Answers (1)

Tiberiu Ichim
Tiberiu Ichim

Reputation: 671

You need to re-run the buildout to get those new packages retrieved from PyPI and available. Also, don't forget to restart the Zope/Plone server.

Upvotes: 1

Related Questions