I am having a little trouble getting trac 1.0
installed via easy_install
:
[box]# easy_install Trac==1.0
Downloading http://pypi.python.org/packages/source/T/Trac/Trac-1.0.zip#md5=3dd2e883179879c8fa5b98c984f15058
Processing Trac-1.0.zip
Writing /tmp/easy_install-FOeJcG/Trac-1.0/setup.cfg
Running Trac-1.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-FOeJcG/Trac-1.0/egg-dist-tmp-b2610A
Trac requires Python 2.5 or later
error: Setup script exited with 1
Python 2.6 is also installed on my system ( /usr/bin/python26
, /usr/include/python2.6/
, /usr/lib/python2.6/
, /usr/lib64/python2.6/
, ect ).
Could I pass one of these as a prefix for easy_install
? If so, which am I looking to include - the libs or the include path?
EDIT Using this answer in SO, I tried making a symlink to python/python26. Continue to get the same error as above.
python26
you probably need to installsetuptools26
which has a binary calledeasy_install26
which specifically works with python 2.6. – Sean C. Oct 4 '12 at 22:54sh ./setuptools-0.6c11-py2.6.egg
and now have a workingeasy_install-2.6
. Now to back up the sqlite database & see if I can getTrac 1.0
installed. – a coder Oct 5 '12 at 17:23Trac .12
, installedTrac 1.0
witheasy_install-2.6
- it's up and running now. If you'll put your comment as answer I'll be glad to give you some mojo. – a coder Oct 5 '12 at 18:25