Skip to content Skip to sidebar Skip to footer

Buildout Can't Find The Links For The Dependecies Of Pypi Plone Add-ons

I'm trying to install some add-ons to Plone but buildout can't find the links for the dependencies. I have the following in my buildout.cnfg find-links += http://dist.plone.org/re

Solution 1:

getpaid.yoma.batching is not hosted on pypi.org.

try to search for it and you won't find any results: https://pypi.org/search/?q=getpaid.yoma.batching

you can add it to your buildout as a development egg using mr.developer:

getpaid.yoma.batching               = git https://github.com/collective/getpaid.yoma.batching.git

or you can make a private release of the egg on a custom eggserver or apache/nginx with directory listing (using find-links)


Post a Comment for "Buildout Can't Find The Links For The Dependecies Of Pypi Plone Add-ons"