OK; I've gotten past that error with this:
bash-4.1$ hg diff
diff -r 7a26fc678ad9 bootstrap.py
--- a/bootstrap.py Mon Oct 11 10:40:16 2010 -0700
+++ b/bootstrap.py Tue Nov 16 13:48:43 2010 -0500
@@ -36,7 +36,7 @@
're', 'sre', 'sre_parse', 'sre_constants',
'sre_compile',
'lib-dynload', 'config', 'zlib']
-if sys.version_info[:2] == (2, 6):
+if sys.version_info[:2] == (2, 6) or sys.version_info[:2] == (2, 7):
REQUIRED_MODULES.extend(['warnings', 'linecache', '_abcoll',
'abc'])
if sys.version_info[:2] <= (2, 3):
REQUIRED_MODULES.extend(['sets', '__future__'])
*NOW* the next problem is this:
Downloading
http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c9-py2.7.egg
Traceback (most recent call last):
File "<string>", line 270, in <module>
File "<string>", line 202, in main
File "<string>", line 150, in download_setuptools
File "/usr/lib64/python2.7/urllib2.py", line 126, in urlopen
return _opener.open(url, data, timeout)
File "/usr/lib64/python2.7/urllib2.py", line 397, in open
response = meth(req, response)
File "/usr/lib64/python2.7/urllib2.py", line 510, in http_response
'http', request, response, code, msg, hdrs)
File "/usr/lib64/python2.7/urllib2.py", line 435, in error
return self._call_chain(*args)
File "/usr/lib64/python2.7/urllib2.py", line 369, in _call_chain
result = func(*args)
File "/usr/lib64/python2.7/urllib2.py", line 518, in
http_error_default
raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 404: Not Found
Does someone have a **clean** way to put python 2.6 on Fedora 14?
On Nov 16, 1:42 pm, StephenPSchaefer <
s.schaefer.at....@gmail.com>
wrote: