Hi,
I have a vps, its running CentOS 5.
Python is installed and I think twisted is as well, however I am not 100% sure.

I need to run a python script that starts with

from twisted.internet.protocol import Protocol, Factory
from twisted.internet import reactor

but its giving me errors,

HTML Code:
Traceback (most recent call last):
  File "chatserver.py", line 1, in ?
    from twisted.internet.protocol import Protocol, Factory
ImportError: No module named twisted.internet.protocol


saying it cant be found.
How can I make it work?
thanks!