Can't install collective.recaptcha on Plone 4.3.4

Hi, I try to install collective.recaptcha but can't install.

I add line 'collective.recaptcha' to buildout.cfg

eggs =
Plone
Pillow
Products.PloneFormGen
collective.perseo
collective.cover
fm.content
collective.prettyphoto
collective.recaptcha

then execute ./bin/buidout -N, but I got these error messages,

Couldn't find index page for 'collective.recaptcha' (maybe misspelled?)
Getting distribution for 'collective.recaptcha'.
Couldn't find index page for 'collective.recaptcha' (maybe misspelled?)
While:
Installing instance.
Getting distribution for 'collective.recaptcha'.
Error: Couldn't find a distribution for 'collective.recaptcha'.

Do I have to add some link to find 'collective.recaptcha'?

find-links +=
http://dist.plone.org/release/4.3.4-pending

I appreciate any comments and advice.

Thank you.
Shigeo Honda

Recently pypi dropped support for http and it seems that your buildout needs adjustments.

Please read this thread:

Probably this is enough to fix your issue:

[buildout]
...
index = https://pypi.python.org/simple/
3 Likes

Hi,

I got it. I added ‘index=...’ into buildout.cfg and installed collective.recatcha successfully.

Thank you!
Shigeo Honda

1 Like