On May 5, 1:05 pm, Etienne Python <python.etie...@gmail.com> wrote:
> Well actually, I copied all of the data (including the database), not only
> the code. But indeed, like you say, the problem is not solved yet just by
> installing mysql.
>
> So I followed the alternative solution you suggested. Now I get another
> error actually: when I run ./manage.py syncdb  like you suggested I get the
> following message in the cmd:
>
> Error: No module named redis_cache.cache
>
> I must admit I'm lost ;-)

Well redis is another third-party system, this time a key-value store
that seems to have been configured as a cache. It *might* be using
this:
http://github.com/sebleier/django-redis-cache
but without asking your friend, I wouldn't know for sure. And of
course once we've done that, there's no telling what other third-party
modules you might need.

I don't suppose there is a requirements.txt file in the project?
That's a nice easy way of setting up a virtual environment with all
the libraries you need. If your friend was very organised he would
have created one to allow you to get set up by simply doing:
pip install -r requirements.txt
(having first installed pip of course).
--
DR.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to