<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PRESOON.COM &#187; Python</title>
	<atom:link href="http://presoon.com/blog/category/python/feed/" rel="self" type="application/rss+xml" />
	<link>http://presoon.com/blog</link>
	<description></description>
	<lastBuildDate>Sat, 20 Mar 2010 03:59:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to install Python in linux server</title>
		<link>http://presoon.com/blog/2008/04/29/how-to-install-python-in-linux-server/</link>
		<comments>http://presoon.com/blog/2008/04/29/how-to-install-python-in-linux-server/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 09:08:34 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[install]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=46</guid>
		<description><![CDATA[Easy&#8230;..
cd /usr/local/src
wget http://www.python.org/ftp/python/2.5/Python-2.5.tgz
tar -zxvf Python-2.5.tgz
make
make install
]]></description>
			<content:encoded><![CDATA[<p>Easy&#8230;..</p>
<p><em>cd /usr/local/src<br />
wget http://www.python.org/ftp/python/2.5/Python-2.5.tgz<br />
tar -zxvf Python-2.5.tgz<br />
make<br />
make install</em></p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/29/how-to-install-python-in-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Mod_Python in Linux server</title>
		<link>http://presoon.com/blog/2008/04/29/how-to-install-mod_python-in-linux-server/</link>
		<comments>http://presoon.com/blog/2008/04/29/how-to-install-mod_python-in-linux-server/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 09:05:37 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[mod_Python]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=45</guid>
		<description><![CDATA[Both instruction for Apache 1.x and Apache 2.x are given below.
First, you need to check what version of Python you are running. 
python -V
If you are running Apache 1.3.x, you should use mod_python version 2.7.11 and for Apache 2.2.x, use 3.3.1.
Python with  version 2.1.x greater than are only supported
latest is to use Python2.5.5
The step [...]]]></description>
			<content:encoded><![CDATA[<p>Both instruction for Apache 1.x and Apache 2.x are given below.</p>
<p>First, you need to check what version of Python you are running. </p>
<p><em>python -V</em></p>
<p>If you are running Apache 1.3.x, you should use mod_python version 2.7.11 and for Apache 2.2.x, use 3.3.1.</p>
<p>Python with  version 2.1.x greater than are only supported<br />
latest is to use Python2.5.5</p>
<p>The step are for Apache 1.3.x. However, for Apache 2.1.x download mod_python 3.3.1 and follow the same steps</p>
<p>   <em> cd /usr/local/src<br />
    wget http://www.trieuvan.com/apache/httpd/modpython/mod_python-2.7.11.tgz<br />
    tar -xvzf mod_python-2.7.11.tgz<br />
    cd mod_python-2.7.11</p>
<p>    ./configure –with-apxs=/usr/local/apache/bin/apxs –with-python=/usr/local/bin/python</em></p>
<p>The –with-python path should reflect the location of the python binary</p>
<p> If you are on Apache 1.3, follow the steps below. If not, go for make and make install.</p>
<p>                    <em>vi src/Makefile</em><br />
                   Locate the ‘CFLAGS’ line, and add the -DEAPI switch so it looks like this:<br />
                  <em>CFLAGS=$(OPT) $(INCLUDES) -DEAPI</em></p>
<p>                  Then add -lutil to the LIBS line like so:<br />
         <em> LIBS=-lm /usr/local/src/Python-2.5.1/libpython2.5.a -lutil</em></p>
<p>Run the <em>make</em> and <em>make install.</em></p>
<p>This should be done. for both Apache versions.</p>
<p>Edit httpd.conf and create your handlers. </p>
<p>Apache 1.3.x<br />
   <em> LoadModule python_module libexec/mod_python.so<br />
    AddModule mod_python.c<br />
    AddHandler mod_python .psp .py</em></p>
<p>Apache 2.1.x<br />
<em>LoadModule python_module modules/mod_python.so<br />
AddHandler mod_python .psp .py</em></p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/29/how-to-install-mod_python-in-linux-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to install docutils in Linux server</title>
		<link>http://presoon.com/blog/2008/04/29/how-to-install-docutils-in-linux-server/</link>
		<comments>http://presoon.com/blog/2008/04/29/how-to-install-docutils-in-linux-server/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 08:20:31 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[docutils]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=44</guid>
		<description><![CDATA[Download manually the docutils tar gz from http://prdownloads.sourceforge.net/docutils/docutils-0.4.tar.gz?download
cd /usr/local/src/
wget http://prdownloads.sourceforge.net/docutils/docutils-0.4.tar.gz?download
sudo easy_install /pathto/docutils-0.4.tar.gz
  
]]></description>
			<content:encoded><![CDATA[<p>Download manually the docutils tar gz from http://prdownloads.sourceforge.net/docutils/docutils-0.4.tar.gz?download</p>
<p><em>cd /usr/local/src/<br />
wget http://prdownloads.sourceforge.net/docutils/docutils-0.4.tar.gz?download</p>
<p>sudo easy_install /pathto/docutils-0.4.tar.gz</em></p>
<p> <img src='http://presoon.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/29/how-to-install-docutils-in-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Python Imaging Library    PIL  on Linux server</title>
		<link>http://presoon.com/blog/2008/04/29/how-to-install-python-imaging-library-pil-on-linux-server/</link>
		<comments>http://presoon.com/blog/2008/04/29/how-to-install-python-imaging-library-pil-on-linux-server/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 08:17:40 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[PIL]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=43</guid>
		<description><![CDATA[Python Imaging Library (PIL)
Make sure Python is installed.
 Prerequisites.
   If you need any of the features described below, make sure you
   have the necessary libraries before building PIL.
   feature              library
   &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
   JPEG [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Python Imaging Library (PIL)</strong></p>
<p>Make sure Python is installed.</p>
<p> Prerequisites.</p>
<p>   If you need any of the features described below, make sure you<br />
   have the necessary libraries before building PIL.</p>
<p>   feature              library<br />
   &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
   JPEG support         libjpeg (6a or 6b)</p>
<p>http://www.ijg.org</p>
<p>http://www.ijg.org/files/jpegsrc.v6b.tar.gz</p>
<p>                        ftp://ftp.uu.net/graphics/jpeg/</p>
<p>   PNG support          zlib (1.1.4 or later is recommended)</p>
<p>http://www.gzip.org/zlib/</p>
<p>   OpenType/TrueType    freetype2 (2.1.3 or later is recommended)<br />
   support</p>
<p>http://www.freetype.org</p>
<p>http://freetype.sourceforge.net</p>
<p><strong>Installation </strong></p>
<p>Make sure Python is installed.</p>
<p>Then go for</p>
<p><em>wget http://effbot.org/downloads/Imaging-1.1.6.tar.gz<br />
tar -zxf Imaging-1.1.6.tar.gz<br />
cd Imaging-1.1.6/</p>
<p>python setup.py install</em></p>
<p>Thant&#8217;s all</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/29/how-to-install-python-imaging-library-pil-on-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
