User:Bourke/escidocadmin

From MPDLMediaWiki
Jump to navigation Jump to search

notes on getting escidocadmin running

modifications to existing doc

Using ESciDoc_Admin as basis

Prerequisite for Easy_Install is Setuptools Install link to v0.6c11

updated sqlalchemy download

Easy_install fails to install turbogears 1.0.3 correctly and leaves dir corrupted. Trying with successor framework pip (simply replace easy_install with pip install, keep old version requirements.

Pysqlite appears to no longer exist at these links. found downloads here

c:\dev\escidocadmin\escidocadmin_env>easy_install -f http://www.turbogears.org/1.0/downloads/1.0.4.4 RuleDispatch

and then turbogears install as docs

easy_install -f http://www.turbogears.org/1.0/downloads --1.0.4.4

install sqlite - a nightmare.

from[ http://www.turbogears.org/1.0/docs/Database/index.html Turbogears 1.0 database installation] cannot install from package as Ubuntu 10.04 Lucid ships Python 2.6.5 as standard. So:

  • Install development tools (gcc, make, etc.). (already installed long ago)
  • Install SQLite and the SQlite development files. (apt-get install sqlite3 libsqlite3-dev)
  • gete a pysqlite tarball from Google Code repository
  • extract and copy directly under the project directory of the 2.5 virtualenv
  • with virtualenv activated and python2.5 operating run python setup.py build from the extracted pysqlite directory.

manual install python 2.5 on ubuntu

good (but not perfect) link howto manual install python25 on ubuntu lucid

worked, but virtualenv then failed to use the python executable, failed to load zlib.

suggestion andre:

apt-get install zlib11g-dev and remake. worked