From charlesreid1

(Created page with "=Installation= Download from the Mechanize page here: http://wwwsearch.sourceforge.net/mechanize/download.html ==Configure/Build== First, pick a destination directory for mech...")
 
No edit summary
Line 25: Line 25:
python ./setup.py install --prefix=$[INSTALL_PATH}
python ./setup.py install --prefix=$[INSTALL_PATH}
</source>
</source>
The last step is to permanently add <code>/path/to/mechanize/lib/python2.7/site-packages</code> to your <code>$PYTHONPATH</code> in your .profile or .bashrc or wherever you set your <code>$PYTHONPATH</code> variable.
To test it out, open Python and run the command:
<pre>
>>> import mechanize
>>>
</pre>
If you installed it correctly, you should not see any error messages.

Revision as of 04:38, 19 August 2011

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}

The last step is to permanently add /path/to/mechanize/lib/python2.7/site-packages to your $PYTHONPATH in your .profile or .bashrc or wherever you set your $PYTHONPATH variable.

To test it out, open Python and run the command:

>>> import mechanize
>>>

If you installed it correctly, you should not see any error messages.