I just upgraded ubuntu from 13.10 to 14.04LTS. Now when I try to run fenics I get:
Exception: Incompatible swig versions detected. UFC swig version is not the same as extension module swig version: '2.0.10' != '2.0.11'
I've tried instant-clean to no avail. I dug through the code a little, and ended up hacking it. I changed the /usr/share/pyshared/ufc/ufc.py file and modified the second last statement to
__swigversion__ = "2.0.11" #"%d.%d.%d"%(tuple(map(int, [tmp[-5], tmp[-3], tmp[-2:]])))
but that seems like a less than ideal hack.
Any suggestions?