<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
</style>
</head>
<body class='hmmessage'>
Thanks! That helped. The online documentation needs to be updated to say that for newbies like me. I went ahead with the Django web server installation and got this error when running python manage.py syncdb:<br><br>Traceback (most recent call last):<br>  File "manage.py", line 108, in <module><br>    execute_manager(settings)<br>  File "C:\omero_dist\lib\python\django\core\management\__init__.py", line 340, in execute_manager<br>    utility.execute()<br>  File "C:\omero_dist\lib\python\django\core\management\__init__.py", line 295, in execute<br>    self.fetch_command(subcommand).run_from_argv(self.argv)<br>  File "C:\omero_dist\lib\python\django\core\management\base.py", line 77, in run_from_argv<br>    self.execute(*args, **options.__dict__)<br>  File "C:\omero_dist\lib\python\django\core\management\base.py", line 87, in execute<br>    translation.activate('en-us')<br>  File "C:\omero_dist\lib\python\django\utils\translation\__init__.py", line 73, in activate<br>    return real_activate(language)<br>  File "C:\omero_dist\lib\python\django\utils\translation\__init__.py", line 43, in delayed_loader<br>    return g['real_%s' % caller](*args, **kwargs)<br>  File "C:\omero_dist\lib\python\django\utils\translation\trans_real.py", line 209, in activate<br>    _active[currentThread()] = translation(language)<br>  File "C:\omero_dist\lib\python\django\utils\translation\trans_real.py", line 198, in translation<br>    default_translation = _fetch(settings.LANGUAGE_CODE)<br>  File "C:\omero_dist\lib\python\django\utils\translation\trans_real.py", line 181, in _fetch<br>    app = getattr(__import__(appname[:p], {}, {}, [appname[p+1:]]), appname[p+1:])<br>  File "C:\omero_dist\lib\python\django\contrib\admin\__init__.py", line 1, in <module><br>    from django.contrib.admin.options import ModelAdmin, HORIZONTAL, VERTICAL<br>  File "C:\omero_dist\lib\python\django\contrib\admin\options.py", line 5, in <module><br>    from django.contrib.contenttypes.models import ContentType<br>  File "C:\omero_dist\lib\python\django\contrib\contenttypes\models.py", line 1, in <module><br>    from django.db import models<br>  File "C:\omero_dist\lib\python\django\db\__init__.py", line 16, in <module><br>    backend = __import__('%s%s.base' % (_import_path, settings.DATABASE_ENGINE), {}, {}, [''])<br>  File "C:\omero_dist\lib\python\django\db\backends\postgresql\base.py", line 19, in <module><br>    raise ImproperlyConfigured("Error loading psycopg module: %s" % e)<br>django.core.exceptions.ImproperlyConfigured: Error loading psycopg module: No module named psycopg<br><br>My settings.py are as follows:<br># Database settings<br>DATABASE_ENGINE = 'postgresql'    <br>DATABASE_NAME = ''   <br>DATABASE_USER = 'omero'             <br>DATABASE_PASSWORD = 'omero'         <br>DATABASE_HOST = ''            <br>DATABASE_PORT = '5432'           <br><br># Test database name<br>TEST_DATABASE_NAME = ''<br><br>Thanks for your help again!<br><br>> Date: Tue, 21 Apr 2009 18:18:16 +0200<br>> From: mvalle@cscs.ch<br>> To: jtrjacob@hotmail.com<br>> Subject: Re: [ome-users] Windows installation error<br>> <br>> Do you have defined<br>> PYTHONPATH=/Users/mvalle/Ice-3.3.0/py/python:/omero-4.0.1/dist/lib/python<br>> to contain the Ice python directory (see above)?<br>> Hope it helps<br>>          mario<br>> <br>> jtr jacob wrote:<br>> > Hi,<br>> > I have been following the instructions to install OME server on a <br>> > Windows box. I got all the pre-req and pre-install done. I have used all <br>> > the default settings. However, when I come to initialize the OME <br>> > database, I get this error when running| bin\omero db script<br>> > Traceback (most recent call last):<br>> >   File "bin\omero", line 67, in <module><br>> >     import omero.cli<br>> >   File "C:\omero_dist\lib\python\omero\__init__.py", line 14, in <module><br>> >     import Ice, Glacier2<br>> > ImportError: No module named Ice<br>> > <br>> > I have tried restarting the machine, re-copying omero_dist etc. The <br>> > error seems to stay put. One of the causes could be that I had <br>> > ActivePython 2.6 running, which I deleted and went back to 2.5.4... and <br>> > then rebooted the machine. Didn't seem to make a difference<br>> > <br>> > Appreciate if you can suggest me some directions to troubleshoot<br>> > Thanks!<br>> > |<br>> > ------------------------------------------------------------------------<br>> > Windows Live™ SkyDrive™: Get 25 GB of free online storage. Check it out. <br>> > <http://windowslive.com/online/skydrive?ocid=TXT_TAGLM_WL_skydrive_042009><br>> > <br>> > <br>> > ------------------------------------------------------------------------<br>> > <br>> > _______________________________________________<br>> > ome-users mailing list<br>> > ome-users@lists.openmicroscopy.org.uk<br>> > http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-users<br>> <br>> -- <br>> Ing. Mario Valle<br>> Data Analysis and Visualization Group            | http://www.cscs.ch/~mvalle<br>> Swiss National Supercomputing Centre (CSCS)      | Tel:  +41 (91) 610.82.60<br>> v. Cantonale Galleria 2, 6928 Manno, Switzerland | Fax:  +41 (91) 610.82.82<br><br /><hr />Rediscover Hotmail®: Now available on your iPhone or BlackBerry <a href='http://windowslive.com/RediscoverHotmail?ocid=TXT_TAGLM_WL_HM_Rediscover_Mobile2_042009' target='_new'>Check it out.</a></body>
</html>