To resolve dependencies using setuptools, but without root access, you'll need to follow the instructions on their website, and apply them to each line in install_dependencies.sh
Once dependencies have been solved, run the following command:
python setup.py install --install-lib "module_dir" --install-scripts "scripts_dir"where "module_dir" and "scripts_dir" are 2 directories you define. "module_dir" will hold the python module for the package you install, and "scripts_dir" will hold any scripts associated with the package. If you take this second route, you should also run (for bash)
export PYTHONPATH="module_dir"so that python can find the modules. You should also add "scripts_dir" to your path:
export PATH=$PATH:"scripts_dir"To avoid having to type these lines every time you open a console, add them to your .bashrc file.
Download this UV file, and unzip it with:
compress_uv.py -x test.uv.tar.bz2Then try:
plot_uv.py -p yy test.uvYou should see:

fit_dly_pos.py -c Sun -x 30 -p x,y,z test.uvIt should list parameters and changing values, with various base scores. Ctrl+C to exit. Okay, it works!
This is a problem with matplotlib not interfacing corretly to your window. Try the following:
import pylab ; pylab.imshow([[0,1],[3,4]]) ; pylab.show()If you don't see:
