From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Zeffertt Subject: Re: Attempt to build xen-unstable on Ubuntu 9.04 Server (Ubuntu Desktop installed) Date: Wed, 06 May 2009 17:37:38 +0100 Message-ID: <4A01BCD2.7000505@eu.citrix.com> References: <295806.73058.qm@web56108.mail.re3.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <295806.73058.qm@web56108.mail.re3.yahoo.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: "bderzhavets@yahoo.com" Cc: xen-devel , Ian Jackson List-Id: xen-devel@lists.xenproject.org Hi, It looks like the problem is that if you have python2.6 installed then xen-unstable.hg installs into /usr/lib/python2.6/site-packages/xen, but site-packages is no longer in the default path in python2.6. A hack which fixes this is to add the following two lines to /etc/python2.6/sitecustomize.py: import sys sys.path.append('/usr/lib/python2.6/site-packages') but I'm not sure what the proper fix would be... Regards, Alex PS This is also relevant https://bugs.launchpad.net/ubuntu/+source/python2.6/+bug/362570