No subject
Mon Oct 27 23:55:54 CET 2008
% python
Python 2.7a0 (trunk:67276M, Nov 18 2008, 21:20:11)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import logilab.common
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named common
>>> import common
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named common
>>> import logilab
>>> dir(logilab)
['[astng/]', '__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__']
Is there something wrong with logilab.common 0.36.1? (The dir() command is
a homegrown extension. Square brackets around an item indicates it has yet
to be imported. The trailing slash says it's a package.)
I dumped the easy-install'd versions of all three and installed from tar
files. Now things work.
--
Skip Montanaro - skip at pobox.com - http://smontanaro.dyndns.org/
More information about the Python-Projects
mailing list