Many python packages (and some required for Askbot) are distributed via distutils - what if I don't have this tool? How do I install it?
What to do if I don't have administrator privilege?
first check - maybe you already have easy_install?
Type: which easy_install. If some path is printed - probably you don't need to go through this (but there may be a case when you have a wrong version of easy_install - and then you will need to address this issue. This may happen if you have more than one version of python on the same system.)
Source code installation will work on all systems and will adapt to your version of Python.
Download source distribution of Distutils from http://pypi.python.org/pypi/setuptools (file with extension .tar.gz). For example (version current at the time of this writing):
wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz#md5=7df2a529a074f613b509fb44feefe74e
unzip the file, go inside the source directory:
tar xvfz setuptools-0.6c11.tar.gz
cd setuptools-0.6c11
install the package (assuming you are logged in as root)
python setup.py install
If you do not have root privilege some more work will need to be done (only once though)
Which version of python do you have? Let's assume it's 2.4.
mkdir /path/to/your/python-packages #assuming that directory /path/to/your and is yours
mkdir /path/to/your/python-packages/lib
mkdir /path/to/your/python-packages/lib/python2.4/
mkdir /path/to/your/python-packages/lib/python2.4/site-packages
PYTHONPATH=/path/to/your/python-packages/lib/python2.4/site-packages
export PYTHONPATH
python setup.py install --prefix=/path/to/your/python-packages
That's it. You can now easy_install python modules!
One more thing - you will need to add path to easy_install to your system path variable (will update the post in a bit).
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-20 06:29:10 -0500
Seen: 3,704 times
Last updated: Apr 20 '10
ImportError: No module named XYZ. What to do?
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.