Thursday, August 15, 2013

Re: Django install existing project

Normally pip install will put it in your site-packages directory.  Try starting python, then:

>>> import django
>>> django

That should mention a file path that will tell you where things get installed.

If the project isn't set up to run that way (for example, if you need to customize settings.py or urls.py), then probably better than installing it is just unpacking it where you need it.  You should be able to get github to give you a zip file.

Bill


On Thu, Aug 15, 2013 at 11:02 AM, Gerd Koetje <deonlinefotograaf@gmail.com> wrote:
Hi,

Im fairly new to django and trying to install a existing project
https://github.com/ossobv/pstore

Im kinda stuck on how to install this
i tried pip install django-pstore and it installs something but when i check the directory i dont see an pstore website directory
i do find it in the site-packages

im kinda confused how to get this properly installed
anyone care to help me out a bit?

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

No comments:

Post a Comment