I've started testing askbot under Python 2.4. There are errors like the one in the title.
While dependencies are in the process of being accounted for and these errors are being eliminated, hopefuly answers to this question will help users solve these issues on their own or maybe you guys could add modules with Python 2.4 here in the comments.
(including the case of non-root user)
Ok here was one missing import: hashlib.
Well you can google python 2.4 hashlib and find a resource for that library.
If you find source code distribution like this one.
Download the source (this one comes in the zip file)
wget http://pypi.python.org/packages/source/h/hashlib/hashlib-20081119.zip
with Unix wget or just get the file through your browser.
Then unzip the file, and jump into the directory
unzip hashlib-20081119.zip
cd unzip hashlib-20081119
There will be file setup.py (all python modules distributed with distutils have it).
Assuming that you have setuptools installed and that you have root access (for non-root there is a small modification to the command) you can finalize installation this way:
su
python setup.py install
or
sudo python setup.py install
An important part: python executable called by this command must be the same as the one used by the webserver process. Most likely - this is the case automatically, but sometimes it is not true.
To find out where the python is coming from type which python and you'll get something like
/usr/bin/python
Your system administrator must know which python executable is called by the webserver.
There will be only two small modifications to the command:
python setup.py --prefix /path/to/your/python/packages
You'll use --prefix parameter and sudo will not be needed because you have access to the directory /path/to/your/python/packages
Here is the full documentation for the python distutils.
Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.
create your Q&A siteAsked: 2010-04-18 14:24:29 -0500
Seen: 690 times
Last updated: Apr 18 '10
How to install python easy_install (python distutils) in root or non-root account?
Bad MD5 hash for Lamson package.
Is my shared host good enough for Django applications?
Where are the badges in a fresh install? [fixed]
Site owners - don't forget to adjust your privacy policy
How to install askbot on free hosting account at alwaysdata.com?
Why do I get a "No module named askbot.deployment" error on Windows?
"App with label forum could not be found" when running migrate
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.