Revision history [back]
Hi. I would advise not to have your virtual environment in the same level as your sources. At least to me, it make things seem more complicated. It would be better if you have your virtualenv e.g. in /srv/answers/askbot
and your project root in /srv/answers/askbot/myProject
. This way, folder bin
of your virtual env (with python etc.) will be outside your source files and it will be easier to realize which files are askbot's and which ones are of the virtual env.
Now to your problem. Are you sure you have run setup.py install
and askbot-setup
using the same python, like ./bin/python setup.py install
and ./bin/askbot-setup
? Also, in /srv/answers/askbot/
is there file settings.py
? If not, try to do your installation this way to see if there is any progress.
Cheers