On Sep 29, 2011, at 7:36 AM, Vasile Ermicioi wrote: > /home/my_user/bin/python2.7 uwsgiconfig.py --build > > but I did so > > will that work > > export LD_LIBRARY_PATH=/home/my_user/lib/python2.7 > > then running the uwsgi command? >
A note of caution when modifying LD_LIBRARY_PATH: like PATH, it may already have something it it, so you generally append to the end (or prefix to the beginning). Example: LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib; export LD_LIBRARY_PATH

