<?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>Teguh Eko Budiarto &#187; setuptools</title>
	<atom:link href="http://teguheko.echodess.com/tag/setuptools/feed/" rel="self" type="application/rss+xml" />
	<link>http://teguheko.echodess.com</link>
	<description>Web Programming and Sharing Experience</description>
	<lastBuildDate>Tue, 23 Aug 2011 03:58:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>How to make Python enable to download package from internet</title>
		<link>http://teguheko.echodess.com/2009/10/how-to-make-python-enable-to-download-package-from-internet/</link>
		<comments>http://teguheko.echodess.com/2009/10/how-to-make-python-enable-to-download-package-from-internet/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 01:25:41 +0000</pubDate>
		<dc:creator>Teguh Eko Budiarto</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[setuptools]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://teguheko.echodess.com/?p=68</guid>
		<description><![CDATA[This tip is for windows XP user ( some other windows version will also have similar procedure). If you are using an automatic configuration script for your internet setting, most probably, Python will not be able to connect to internet. This is troublesome if you want to install some packages which has dependencies which need [...]]]></description>
			<content:encoded><![CDATA[<p>This tip is for windows XP user ( some other windows version will also have similar procedure).</p>
<p>If you are using an automatic configuration script for your internet setting, most probably, Python will not be able to connect to internet. This is troublesome if you want to install some packages which has dependencies which need to be fetched from the net. You need to change your internet options setting to use the proxy address directly.</p>
<p>Below is how to do that:</p>
<ul>
<li>Go to Control Panel</li>
<li>Open Internet Options</li>
<li>Open Connection Tab</li>
<li>Click on <strong>LAN Settings</strong> button</li>
<li>Check the <em>Use a proxy server for your LAN&#8230;</em></li>
<li>Enter the <strong>proxy IP Address </strong>and its <strong>port</strong>. If you do not know where it is, ask your network administrator or just open the configuration script to find out where is the IP you need to use.</li>
<li>Press OK until all the setting windows are closed.</li>
</ul>
<p>Below is the screen shot of the internet options screen.</p>
<div id="attachment_69" class="wp-caption aligncenter" style="width: 544px"><img class="size-full wp-image-69" title="Internet Options Setting" src="http://teguheko.echodess.com/wp-content/uploads/2009/10/internetoptions.jpg" alt="Windows XP Professional Internet Options Screen" width="534" height="539" /><p class="wp-caption-text">Windows XP Professional Internet Options Screen</p></div>
]]></content:encoded>
			<wfw:commentRss>http://teguheko.echodess.com/2009/10/how-to-make-python-enable-to-download-package-from-internet/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Building Python installer from package source</title>
		<link>http://teguheko.echodess.com/2009/10/building-python-installer-from-package-source/</link>
		<comments>http://teguheko.echodess.com/2009/10/building-python-installer-from-package-source/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 01:04:42 +0000</pubDate>
		<dc:creator>Teguh Eko Budiarto</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[python package]]></category>
		<category><![CDATA[setuptools]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://teguheko.echodess.com/?p=65</guid>
		<description><![CDATA[I wrote this post in my journey to adapt Python with Django framework as my tool in the next project. A little bit skeptical and some holding back since I had background in PHP and C# .Net. But, I have no choice because Python is already team&#8217;s decision for new projects. So, here I go [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote this post in my journey to adapt Python with Django framework as my tool in the next project. A little bit skeptical and some holding back since I had background in PHP and C# .Net. But, I have no choice because Python is already team&#8217;s decision for new projects. So, here I go with learning new language and framework again.</p>
<p>In the way, sometimes I can not find a distributable package for your Python version. In one case, I would like to install <a href="http://pypi.python.org/pypi/setuptools">setuptools</a> to install other packages, <a href="http://pypi.python.org/pypi/soaplib/0.8.1">soaplib</a> which I need to build a SOAP web service. This is because most of our legacy applications are using C# which using SOAP to interface with web services, otherwise, I prefer to create REST based web service. Anyway, this is just my beginner way of thinking.</p>
<p>So, enough with the mumbling, below is how it is:</p>
<ul>
<li>Unpack the source into a folder.</li>
<li>Using command prompt, go to the folder and run command below ( I assume that you already set your python PATH and can run Python command from command prompt).<strong></strong></li>
<blockquote>
<li><strong>python setup.py bdist_wininst</strong></li>
</blockquote>
<li>Voila! An executable installer for your installed Python version will be available in <strong>dist </strong>sub folder.</li>
</ul>
<p>Very easy isn&#8217;t it? Yeah, if it is that easy for me to find how in the first place, I would&#8217;nt write this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://teguheko.echodess.com/2009/10/building-python-installer-from-package-source/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

