Skip to content Skip to sidebar Skip to footer

Buildout Can't Find Pip Packages For Plone

I'm trying to add add-ons to Plone through buildout but it can't find the packages. I've tried it in a virtualenv andd the system wide python I followed the set up on the Plone sit

Solution 1:

there have been a lot of similar problems reported on https://community.plone.org/

the problem most probably is the migration from in pypi.python.org to pypi.org

you can add:

index = https://pypi.org/simple/

and if you are using allowed hosts you need 2 new ones and can skip *.python.org:

allow-hosts =
    pypi.org
    files.pythonhosted.org

alternatively you can use a current versions of setuptools and zc.buildout

attention: for setuptools > 38.7.0 you need to pin

plone.recipe.zope2instance = 4.4.0

(see https://github.com/plone/plone.recipe.zope2instance/blob/4.4.0/CHANGES.rst)


Post a Comment for "Buildout Can't Find Pip Packages For Plone"