First time here? Check out the FAQ!
1

Need help installing.
 

Hello, I still did not created my site, but I'm trying to test askbot in my computer. I'm almost finishing it, but there are some things I still couldn't do.

One thing is I cannot install mysql.python. I've researched and I found places that say that mysql-python does not work on windows. Is it true?

Then I have to install the recaptcha things. I can't use easy_install with those, but I go to the urls in the INSTALL file and I don't understand what I have to do.

Can you help me?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
jeremy's avatar
133
jeremy
asked 14 years ago

Comments

see more comments

1 Answer

1

Hi Jeremy, regarding MySQL-python in windows please check this out.

On Linux all dependencies (excluding recaptcha-django) will install one or two lines:

easy_install mysql-python django South recaptcha-client \
             markdown2 html5lib python-openid

easy_install django-debug-toolbar==0.7.0

Notice that django-debug-toolbar must be of specific version. The latest one has a serious unsolved bug, which prevents using the toolbar at least with askbot (occasionally you'll want to turn it on because it helps debugging).

recaptcha-django library is not yet accessible through easy_install and I will just add it to the distribution so that nobody has to download it anymore - I'll solve this issue by tomorrow, but for now you can get it through subversion (install some subversion client for windows first)

Here is how it goes on Linux:

svn checkout http://recaptcha-django.googlecode.com/svn/trunk/ \
                                    recaptcha-django-read-only

cd recaptcha-django-read-only
python setup.py install

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
updated 14 years ago, answered 14 years ago
link

Comments

And how do I install the other recaptcha thing?
jeremy's avatar jeremy (14 years ago)
recaptcha-client is actually available through easy_install
Evgeny's avatar Evgeny (14 years ago)
It does not say that in the INSTALL. Thanks. I have another question now, but I'll put in another question.
jeremy's avatar jeremy (14 years ago)
see more comments