From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 3C9C1E009FA; Wed, 1 Jul 2015 08:55:38 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low * trust * [209.85.212.178 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id BE41DE007A3 for ; Wed, 1 Jul 2015 08:55:35 -0700 (PDT) Received: by wiwl6 with SMTP id l6so169839207wiw.0 for ; Wed, 01 Jul 2015 08:55:34 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=Fma/qIg6lfE6r6cRhxwsqEmLXyOxexDi+TFiQ/lPMLo=; b=NGQpeqd4/XOxwFU6gX3Gp0eaPHBFKBTG56MiOsHC1vbJD2jYkhmfculiDliUo9wKUL fOMQNbu+Sfk4yQHmOBeTx3U2Zuuy04VP9jpdREvPUkoQic9YNaKoh6qOmEXD4qGh6iuc wvERdsE/oVJ9UyezBNYyW9v5jQqI+hiRgoSQVaTh4axIrYvoENKvDTqEkRhLzs9HtoiZ JnhnBYjOx5a+6j/7CvqczuMzW9vuMuJ2sfB4HUJv5EEr7Jen4b6NBErxEMLIIRFCB/8C 3S8gz7VnazaKPRiLEASy/O8JpJ+JqvcE8pK5VPl6mS1l1YhG5IVxSsNG0/Aul8uApssw EnxA== X-Gm-Message-State: ALoCoQnYB081pmSM8SClFbCSZAEeItSUhjxqjB2jf9Rn633XACUmozodGIWBT2+FW58/Y6rv5NQc X-Received: by 10.194.89.225 with SMTP id br1mr51272098wjb.97.1435766134359; Wed, 01 Jul 2015 08:55:34 -0700 (PDT) Received: from [192.168.2.189] ([83.217.123.106]) by mx.google.com with ESMTPSA id lu5sm3567431wjb.9.2015.07.01.08.55.32 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 01 Jul 2015 08:55:33 -0700 (PDT) Message-ID: <55940D74.7010102@intel.com> Date: Wed, 01 Jul 2015 16:55:32 +0100 From: Michael Wood User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: toaster@yoctoproject.org References: In-Reply-To: Subject: Re: manage.py collectstatic throws error no South database X-BeenThere: toaster@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Web based interface for BitBake List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jul 2015 15:55:38 -0000 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit On 26/06/15 11:58, Daniel Kuhne wrote: > Hi, i am getting error: > > poky/bitbake/lib/toaster/manage.py collectstatic > There is no South database module 'south.db.sqlite3' for your > database. Please either choose a supported database, check for > SOUTH_DATABASE_ADAPTER[S] settings, or remove South from INSTALLED_APPS. > > > Hi Daniel, Are you using Django (1.6) ? We have a requirements.txt file which lists the python modules we use in poky/bitbake/requirements.txt Our recommened setup is to use virtualenv, activate it and then install the dependencies using `pip install -r poky/bitbake/requirements.txt` this means that the python modules on the distro do not conflict with the versions which we currently test on. e.g. cd ./poky virtualenv venv source venv/bin/activate pip install -r ./bitbake/requirements.txt We also recommend using the fido release of poky (git checkout fido) if you aren't already, as Toaster in current poky master is going through a lot of changes at the moment and the documentation for toaster has not yet been updated. Thanks, Michael