Python 2.6 compatibility

Suggestions and discussion of future versions
Post Reply
iterator

Python 2.6 compatibility

Post by iterator »

Hi,
I tried to install deluge 1.1.9, but installation doesn't work with Python 2.6 anymore. With 2.5 there was no problem.

Code: Select all

python setup.py build
Traceback (most recent call last):
  File "setup.py", line 28, in <module>
    from setuptools import setup, find_packages, Extension
ImportError: No module named setuptools
Is deluge (yet) compatible with Python 2.6?
andar
Top Bloke
Top Bloke
Posts: 1050
Joined: Fri Jun 08, 2007 8:38 pm
Location: Victoria, BC
Contact:

Re: Python 2.6 compatibility

Post by andar »

Yes, Deluge is 2.6 compatible. It seems to me you need to install setuptools. There is a chance you have installed setuptools in the past, but only for python 2.5, not 2.6.
iterator

Re: Python 2.6 compatibility

Post by iterator »

Hi,
setuptool was installed, but in the old Python 2.5 directory. Installing it in the 2.6 dir solved the problem, thanks.
Post Reply