The fatal error is this one: On Thu, Jul 30, 2009 at 10:51 AM, <[email protected]> wrote: > Searching for pyOpenSSL > Reading http://allmydata.org/source/tahoe/deps/tahoe-deps/ > Best match: pyOpenSSL 0.9 > Downloading > http://allmydata.org/source/tahoe/deps/tahoe-deps/pyOpenSSL-0.9.tar.gz > Processing pyOpenSSL-0.9.tar.gz > Running pyOpenSSL-0.9/setup.py -q bdist_egg --dist-dir > /tmp/easy_install-qy8Bjn/pyOpenSSL-0.9/egg-dist-tmp-bRYvTH > warning: no previously-included files matching '*.pyc' found anywhere in > distribution > In file included from src/crypto/crypto.h:17, > from src/crypto/crypto.c:14: > src/crypto/x509.h:17:25: error: openssl/ssl.h: No such file or directory
It is trying to compile pyOpenSSL and failing because the OpenSSL development headers are not installed. You can fix this problem by either installing pyOpenSSL (sudo apt-get install python-pyopenssl) or by installing the OpenSSL development headers (sudo apt-get install libssl-dev). Regards, Zooko _______________________________________________ tahoe-dev mailing list [email protected] http://allmydata.org/cgi-bin/mailman/listinfo/tahoe-dev
