Page 1 of 1

SABnzbd install problem for newbie... Help!!

Posted: July 22nd, 2008, 7:08 pm
by krondaj
Hi,

I have been trying to get sabnzbd working on my sabayon box now for 2 days i have installed every module that's it said it needed.

however when I type

python SABnzbd.py

to start SABnzbd i get:

sorry, requires Python module Cheetah 2.0rc7 or higher

i have installed cheetah 2.0.1 (the latest version first using spritz and then trying to install it myself.

i'm a newbie and don't know how to fix this problem!!

I have SABnzbd on my windows box and it's very easy to install!

Can anyone help!!!


Krondaj

Re: SABnzbd install problem for newbie... Help!!

Posted: July 22nd, 2008, 8:33 pm
by switch
To check Cheetah really is installed, type:

Code: Select all

python
import Cheetah
Cheetah.Version
IF you get an import error after typing "import Cheetah" then cheetah is not installed. The docs for installing cheetah can be found here.

Re: SABnzbd install problem for newbie... Help!!

Posted: July 29th, 2008, 4:22 pm
by krondaj
OK I tried that

I got this

chris@localhost ~ $ python
Python 2.5.2 (r252:60911, Jul 20 2008, 21:03:38)
[GCC 4.2.3 (Gentoo 4.2.3 p1.0)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import cheetah
Traceback (most recent call last):
  File "", line 1, in
ImportError: No module named cheetah


However if I go in to another terminal and type cheetah version i get.

chris@localhost ~ $ cheetah version
2.0.1


I don't understand what i'm doing wrong

Re: SABnzbd install problem for newbie... Help!!

Posted: July 29th, 2008, 5:00 pm
by rAf
switch wrote:

Code: Select all

python
import Cheetah
Cheetah.Version
Case is important... Can you retry ?