How to setup setuptools for python 2.6 on Windows? - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T22:51:46Zhttp://stackoverflow.com/feeds/question/309412http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows34How to setup setuptools for python 2.6 on Windows?corvuscorax2008-11-21T16:44:44Z2009-11-16T05:56:23Z
<p>Is there any way to install setuptools for python 2.6 in Windows without having an .exe installer? </p>
<p>There isn't one built at the moment, and the maintainer of setuptools has stated that it's probable be a while before he'll get to it. </p>
<p>Does anyone know of a way to install it anyway?</p>
http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/309783#30978352Answer by bhadra for How to setup setuptools for python 2.6 on Windows?bhadra2008-11-21T18:56:40Z2008-11-21T19:14:34Z<p>Online Installation (i.e. remain connected to the Internet during the entire installation process)</p>
<ol>
<li>Download <a href="http://pypi.python.org/pypi?:action=show_md5&digest=3864c01d9c719c8924c455714492295e" rel="nofollow">setuptools-0.6c9.tar.gz</a></li>
<li>Use <a href="http://www.7-zip.org/" rel="nofollow">7-zip</a> to extract it to a folder(directory) outside your Windows Python installation folder</li>
<li>Go the folder (refer step 3) and run ez_setup.py from the corresponding dos (command) prompt</li>
<li>Ensure that your PATH includes the appropriate C:\Python2X\Scripts directory</li>
</ol>
<p>Second Option:</p>
<ol>
<li>Download <a href="http://pypi.python.org/pypi?:action=show_md5&digest=3864c01d9c719c8924c455714492295e" rel="nofollow">setuptools-0.6c9.tar.gz</a></li>
<li>Download <a href="http://pypi.python.org/packages/2.6/s/setuptools/setuptools-0.6c9-py2.6.egg#md5=ca37b1ff16fa2ede6e19383e7b59245a" rel="nofollow">setuptools-0.6c9-py2.6.egg</a> to a folder(directory) outside your Windows Python installation folder</li>
<li>Use <a href="http://www.7-zip.org/" rel="nofollow">7-zip</a> to extract ez_setup.py in the same folder as <a href="http://pypi.python.org/packages/2.6/s/setuptools/setuptools-0.6c9-py2.6.egg#md5=ca37b1ff16fa2ede6e19383e7b59245a" rel="nofollow">setuptools-0.6c9-py2.6.egg</a></li>
<li>Go to the corresponding dos prompt and run python ez_setup.py setuptools-0.6c9-py2.6.egg from the command prompt</li>
<li>Ensure that your PATH includes the appropriate C:\Python2X\Scripts directory</li>
</ol>
<p>Third Option (assuming that you have Visual Studio 2005 or MinGW on your machine)</p>
<ol>
<li>Download <a href="http://pypi.python.org/pypi?:action=show_md5&digest=3864c01d9c719c8924c455714492295e" rel="nofollow">setuptools-0.6c9.tar.gz</a></li>
<li>Use <a href="http://www.7-zip.org/" rel="nofollow">7-zip</a> to extract it to a folder(directory) outside your Windows Python installation folder</li>
<li>Go the folder (refer step 3) and run python setup.py install from the corresponding dos (command) prompt</li>
</ol>
<p>Please provide feedback.</p>
http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/380007#3800074Answer by will-mvn for How to setup setuptools for python 2.6 on Windows?will-mvn2008-12-19T03:15:06Z2008-12-19T03:15:06Z<p>I got it working quickly by downloading the source and then running (from the extracted directory):</p>
<pre><code>python.exe setup.py bdist_wininst
</code></pre>
<p>That builds <code>dist\setuptools-0.6c9.win32.exe</code>, which is exactly the installer you're looking for.</p>
http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/425318#42531827Answer by Rod for How to setup setuptools for python 2.6 on Windows?Rod2009-01-08T18:27:59Z2009-01-08T18:27:59Z<p>You could download and run <a href="http://peak.telecommunity.com/dist/ez_setup.py" rel="nofollow">http://peak.telecommunity.com/dist/ez_setup.py</a>. This will download and install setuptools.</p>
http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/675337#6753376Answer by fotoguru for How to setup setuptools for python 2.6 on Windows?fotoguru2009-03-23T21:37:23Z2009-03-23T21:37:23Z<p>The Nov. 21 answer didn't work for me. I got it working on my 64 bit Vista machine by following the Method 1 instructions, except for Step 3 I typed:</p>
<p>setup.py install</p>
<p>So, in summary, I did:</p>
<ol>
<li>Download setuptools-0.6c9.tar.gz</li>
<li>Use 7-zip to extract it to a folder (directory) outside your Windows Python installation folder</li>
<li>At a DOS (command) prompt, cd to your the newly created setuptools-0.6c9 folder and type "setup.py install" (without the quotes).</li>
<li>Ensure that your PATH includes the appropriate C:\Python2X\Scripts directory</li>
</ol>
http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/675373#6753730Answer by Jason Baker for How to setup setuptools for python 2.6 on Windows?Jason Baker2009-03-23T21:49:22Z2009-03-23T21:49:22Z<p>My advice is to wait until Python 2.6.2 to use Python 2.6 on Windows. There are still some bugs that make it less than ideal (<a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2609380&group%5Fid=78018&atid=551954" rel="nofollow">this one is particularly nasty</a>). Personally, I wasn't able to get setuptools working totally well on Vista x64 even after installing from source. Under Python 2.5.4, I haven't had any problems though.</p>
http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/706069#7060691Answer by markewaite for How to setup setuptools for python 2.6 on Windows?markewaite2009-04-01T15:32:06Z2009-04-01T15:32:06Z<p>The "first option" (4 steps: download, extract, run, verify PATH) didn't work on my Windows Server 2008 x64 machine with Python 2.6 32 bit installed, nor did it work on my Vista x64 machine with Python 2.6 32 bit installed.</p>
<p>The "second option (5 steps: download, extract, extract, run, verify PATH) worked on both Windows Server 2008 x64 and on Windows Vista x64.</p>
<p>Thanks a bunch for providing the instructions!</p>
http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/759009#7590091Answer by NathanD for How to setup setuptools for python 2.6 on Windows?NathanD2009-04-17T04:21:19Z2009-04-17T04:21:19Z<p>Just installed setuptools as follows:</p>
<ol>
<li>Downloaded <a href="http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c9.tar.gz#md5=3864c01d9c719c8924c455714492295e" rel="nofollow">http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c9.tar.gz#md5=3864c01d9c719c8924c455714492295e</a> , and extracted to a folder outside of my Python installation.</li>
<li>command prompt, then cd into that folder.</li>
<li>enter <em>python setup.py install</em></li>
</ol>
<p>That will install from the source into your python's site-packages folder and any other steps needed. This was on Windows XP SP2.</p>
http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/817335#8173350Answer by Willie for How to setup setuptools for python 2.6 on Windows?Willie2009-05-03T15:39:56Z2009-05-03T15:39:56Z<p>Second option worked for me.</p>
<p>Two notes:</p>
<p>a. After installing, when you using easy_install in vista, do so as administrator. (Right click on your command line shortcut and click "run as administrator"). I had trouble trying to run easy_install without doing that.</p>
<p>b. He means use ez_setup from setuptools-0.6c9.tar.gz</p>
http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/831165#8311650Answer by Hugo Estrada for How to setup setuptools for python 2.6 on Windows?Hugo Estrada2009-05-06T19:00:39Z2009-05-06T19:00:39Z<p>Option 2 worked. Thanks.</p>
http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/897332#8973321Answer by werner for How to setup setuptools for python 2.6 on Windows?werner2009-05-22T10:59:37Z2009-05-22T10:59:37Z<p>OP option 1 did not work for me.</p>
<p>However doing setup.py install as mentioned by NathanD did do the trick.</p>
<p>Maybe that should become option 1?</p>
<p>Werner</p>
http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/1217869#1217869-1Answer by DNK for How to setup setuptools for python 2.6 on Windows?DNK2009-08-02T00:35:00Z2009-08-02T00:35:00Z<p>The python.exe setup.py bdist_wininst is Ok for me.
Thanks!</p>
http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/1740321#17403210Answer by shahjapan for How to setup setuptools for python 2.6 on Windows?shahjapan2009-11-16T05:56:23Z2009-11-16T05:56:23Z<p>I'm able to find the EXE doing google,</p>
<p>you can simply download it from following URL, and double click and install....</p>
<p><a href="http://pypi.python.org/packages/2.6/s/setuptools/setuptools-0.6c11.win32-py2.6.exe#md5=1509752c3c2e64b5d0f9589aafe053dc" rel="nofollow">http://pypi.python.org/packages/2.6/s/setuptools/setuptools-0.6c11.win32-py2.6.exe#md5=1509752c3c2e64b5d0f9589aafe053dc</a></p>