Hi Emil,
Thank you for using this package, but python-slimmer is just python2
module not python3. As you can see:
Python 2.6.5+ (release26-maint, Jul 6 2010, 12:58:20)
[GCC 4.4.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import slimmer
>>> slimmer.__file__
'/usr/lib/pymodules/python2.6/slimmer/__init__.pyc'
>>>
is living under /usr/lib/pymodules/python2.6 which is not in python3's path:
Python 3.1.2 (release31-maint, Jul 8 2010, 09:18:08)
[GCC 4.4.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path
['', '/usr/lib/python3.1', '/usr/lib/python3.1/plat-linux2',
'/usr/lib/python3.1/lib-dynload', '/usr/lib/python3.1/dist-packages',
'/usr/local/lib/python3.1/dist-packages']
You can try to add /usr/lib/pymodules/python2.6 with
>> sys.path.append('/usr/lib/pymodules/python2.6')
but the module will not work due the python3 backward incompatibilities.
Python3 modules are named python3-*. For now, there is no upstream
python3 version of slimmer.
--
Janoš Guljaš
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]