Reputation: 4465
I'm trying to deploy Everyblock specifically its ebblog package on my OSX. I already have both Python and Django installed, unfortunately I am fairly new to both Python and Django.
The readme says something like this:
Here is the complete readme if you need further context: https://github.com/brosner/everyblock_code/blob/master/ebblog/README.TXT
I'm stuck at #1 - when oyu look at the ebblog its a whole django new application directory/file structure, so do I like copy this entier folder to my python's .../lib folder or what?
I can't imagine copying the entire ebblog folder if that is what it meant by the instruction.
Thanks in advance.
Upvotes: 0
Views: 963
Reputation: 4367
Usually, installing to the python path means making a python package or module importable, so that when you do
import someapp
you can then use someapp in your code. In order to do that you can
plus some others, see The Module Search Path.
Upvotes: 2
Reputation: 31828
Have a look at virtualenv. It helps to keep dependencies of different projects separate. Here's a good tutorial.
Upvotes: 0