I downloaded a package (called pysolr 2.0.15) to my computer to be used with Haystack. The instructions asks me to add pysolr to my PYTHONPATH.
What exactly does tha
Maybe, putting a path to pysolr to sys.path will do a work. Put this at settings.py or init.py of your django-project:
PYSOLR_PATH = '/path/to/pysolr/' import sys if not PYSOLR_PATH in sys.path: sys.path.append(PYSOLR_PATH)
sys.path is a list of strings that specifies the search path for modules.