Hmm, this is weird, I wonder why easy_install decides to download the
development version instead of SQLAlchemy 0.3.11 which is available on
cheese shop:
http://pypi.python.org/pypi/SQLAlchemy/0.3.11
Installing the SQLAlchemy dependency manually might fix this problem:
$ easy_install http://pypi.python.org/packages/source/S/SQLAlchemy/SQLAl
chemy-0.3.11.tar.gz
$ easy_install
http://pypi.python.org/packages/source/E/Elixir/Elixir-0.3.0.tar.gz
> Also when I try to download the development version I get this error:
>
> **********************************
> etch-386:/tmp/posterity-dev# svn co http://svn.edgewall.org/repos/posterity/trunk
> posterity-trunk
> svn: REPORT request failed on '/repos/posterity/!svn/vcc/default'
> svn: REPORT of '/repos/posterity/!svn/vcc/default': 400 Bad Request
> (http://svn.edgewall.org)
> ************************************
>
> maybe svn is down or a problem with my svn client?? any clue¿?¿
This is probably caused by some http proxy sitting between your computer
and the svn server. One workaround is to use an https connection since
http proxies usually leave those alone:
$ svn co https://svn.edgewall.org/repos/posterity/trunk
Cheers,
Jonas