Hello,
I had some troubles installing tg2.1b2 on ubuntu 10.04 too. I think the
problem was with the setuptools. I solved the problem by forcing
setuptools to upgrade. I had created a small .sh file to install again
later. Here is the script:
--------------------
#!/bin/sh
# Create virtual environment
virtualenv --no-site-packages tg21env
cd tg21env
# Activate virtual environment
source bin/activate
# Install TurboGears 2.1
easy_install -i http://www.turbogears.org/2.1/downloads/current/index
tg.devtools
# Upgrade setuptools package
easy_install -U setuptools
--------------------
vivek yazmış:
Hii !
I decided to learn turbogears and am trying to install Turbogears on
my Ubuntu 10.04. It uses python2.6.
I went through the following steps.
1.Created a virtual environment
python virtualenv.py --no-site-packages mydevtg
2.activated the environment
"source mydevtg/bin/activate"
3. Installed Extremes as told by some forum
" easy_install Extremes"
4.Installing turbogears with this command "easy_install -i
http://www.turbogears.org/2.0/downloads/current/index tg.devtools"
But I get an error "KeyError: '_zope_interface_coptimizations'"
I have pasted the entire traceback here"http://pastebin.com/
gVZ5SDAV"... could someone help me.. Googling around tells me that I
would have to install python 2.5-dev but will that not switch my
system python too .. if not could someone please let me know how to do
it. Moreover "python2.5-dev" is not in ubuntu repositories any more
and i dont know where to get it from.. And is this is the only resort
Thanks
Vivek
--
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/turbogears?hl=en.