Re: [viff-devel] Next problem

2009-12-04 Thread Martin Geisler
Nigel Smart ni...@compsci.bristol.ac.uk writes: If you can give me SSH access to the machine, then I can take a closer look. I've yet to meet a machine where I couldn't get VIFF running :-) I've put my SSH public key here: Alas we cant do that due to our security policies. /me mutters

Re: [viff-devel] Next problem

2009-12-04 Thread Nigel Smart
Whats you complete PYTHONPATH? Maybe I am not picking up something Nigel Martin Geisler wrote: Nigel Smart ni...@compsci.bristol.ac.uk writes: If you can give me SSH access to the machine, then I can take a closer look. I've yet to meet a machine where I couldn't get VIFF running :-) I've

Re: [viff-devel] Next problem

2009-12-04 Thread Martin Geisler
Nigel Smart ni...@compsci.bristol.ac.uk writes: Whats you complete PYTHONPATH? Maybe I am not picking up something It's just the one ~/opt/lib/python directory. -- Martin Geisler VIFF (Virtual Ideal Functionality Framework) brings easy and efficient SMPC (Secure Multiparty Computation) to

Re: [viff-devel] Next problem

2009-12-03 Thread Martin Geisler
Nigel Smart ni...@compsci.bristol.ac.uk writes: set is a built-in set data type in Python 2.4 and later. Twisted has a compatibility module for older versions of Python. On my system, the twisted/python/compat.py file (from which the code tries to import set) has try: set = set

Re: [viff-devel] Next problem

2009-12-03 Thread Nigel Smart
Uh, it was supposed to be a solution for you to add :-( It was an explanation that you have a broken installation of Twisted. I have actually installed a whole new version of twisted, Zope, gmpy from scratch this week. You can check that things are installed nicely by switching to some

Re: [viff-devel] Next problem

2009-12-03 Thread Martin Geisler
Nigel Smart ni...@compsci.bristol.ac.uk writes: Uh, it was supposed to be a solution for you to add :-( It was an explanation that you have a broken installation of Twisted. I have actually installed a whole new version of twisted, Zope, gmpy from scratch this week. Hmm, okay. You can

Re: [viff-devel] Next problem

2009-12-03 Thread Nigel Smart
If you can give me SSH access to the machine, then I can take a closer look. I've yet to meet a machine where I couldn't get VIFF running :-) I've put my SSH public key here: Alas we cant do that due to our security policies. Nigel ___ viff-devel

Re: [viff-devel] Next problem

2009-12-01 Thread Nigel Smart
set is a built-in set data type in Python 2.4 and later. Twisted has a compatibility module for older versions of Python. On my system, the twisted/python/compat.py file (from which the code tries to import set) has try: set = set except NameError: from sets import Set as set