Mechanize
From charlesreid1
Installation
Download from the Mechanize page here: http://wwwsearch.sourceforge.net/mechanize/download.html
Configure/Build
First, pick a destination directory for mechanize. I'll use /path/to/mechanize as an example.
Next, run the following commands:
# set installation path
export INSTALL_PATH="/path/to/mechanize"
# create the python site packages directory
export PACKAGE_PATH="${INSTALL_PATH}/lib/python2.7/site-packages"
# add the site packages to the PYTHONPATH variable
export PYTHONPATH=${PACKAGE_PATH}:${PYTHONPATH}
# build
python ./setup.py build
# install
python ./setup.py install --prefix=$[INSTALL_PATH}