First time here? Check out the FAQ!
0

unable to find askbot-setup file

I just clone the repository and ran python setup.py develop command, Then I was going to follow the instructions given at configuration page (Dont have karma to publish links) but I am unable to find the that file in the folder that I install.

Based on the information on git hub clone, I gave a project name when I cloned and so I have myaskbot/askbot

This is what mentioned in the configuration page:

When installing Askbot for the first time, you will need to initialize the project setup files by typing:

askbot-setup
SocialQA's avatar
265
SocialQA
asked 2013-02-22 11:35:33 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

1

When you cloned the repository you have just copied the software onto your disk, but it has not yet been installed in a way that python does not know about what you've copied.

python setup.py install or python setup.py develop do that second part - please read the documentation more carefully.

It's a good idea to use python's virtual environment.

Evgeny's avatar
13.2k
Evgeny
answered 2013-02-22 15:48:52 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments