Installing mediantracker
========================

These directions are for Unix-like systems, but should translate to
Windows and others.

Assuming you have downloaded and unpacked the mediantracker source like so:

    tar xzvf mediantracker-1.0.tar.gz
    cd mediantracker-1.0
    
To install to the systemwide Python site-packages directory:

    sudo python setup.py install
    
To install to a custom location (e.g., ~/mypath) using virtualenv:

    virtualenv ~/mypath
    ~/mypath/bin/python setup.py install
    
You can also install directly from the Python Package Index on the Internet
if you have setuptools and easy_install:

    sudo easy_install mediantracker
    
Or to a custom location, again using virutalenv and replacing ~/mypath:

    virtualenv ~/mypath
    ~/mypath/bin/easy_install mediantracker
    
    
    
More information and help can be found on the Internet
------------------------------------------------------

setuptools  (start here, it makes the rest easy!)
http://pypi.python.org/pypi/setuptools

easy_install (included with setuptools)
http://peak.telecommunity.com/DevCenter/EasyInstall

PyPI, The Python Package Index 
http://pypi.python.org/

virtualenv 
http://pypi.python.org/pypi/virtualenv

mediantracker
http://pypi.python.org/pypi/mediantracker

