[EMAIL PROTECTED] writes: > I installed python2.2 alongside python2.1 and tried your suggestion > w/ the following results: > > # python2.2 /usr/bin/tmda-ofmipd -h > Traceback (most recent call last): > File "/usr/bin/tmda-ofmipd", line 101, in ? > from TMDA import Util > ImportError: No module named TMDA
I'm guessing you have TMDA package installed? Packages actually install the TMDA modules inside the Python lib directory (e.g, /usr/lib/python2.1/site-packages/TMDA/). This means it is tied to that particular release of Python since the modules are not accessible outside of it. You have a few options: 1) Install the Python 2.2 package, and then the TMDA package. Now TMDA will be inside 2.2's lib directory and tmda-ofmipd will work. 2) Use a TMDA tarball instead of a TMDA package (like you were doing with the CVS code). _________________________________________________ tmda-workers mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-workers
