Devido ao meu trabalho com python e TurboGears em meu novo emprego, decidi procurar informações sobre como instalar o TurboGears no Ubuntu Edgy. A “receita" foi mais simples de achar que eu tinha imaginado:
- Primeiro, baixe o script ez-setup nesta página.
- Caso você tenha uma instalação ainda recente, instale o gcc com o comando:
- sudo aptitude install gcc
Depois, instale os pacotes libc6-dev e python-dev:
- sudo aptitude install libc6-dev python-dev
Execute o script ez-setup:
- sudo python ez_setup.py
Execute:
- sudo easy_install -f http://www.turbogears.org/download/index.html —script-dir /usr/local/bin TurboGears
Por último, instale python-profiler:
- sudo aptitude install python-profiler.
Para testar sua instalação, inicie o TubroGears com o comando:
tg-admin toolbox start -n
… e aponte seu navegador preferido para http://localhost:7654 e pronto! Seja bem vindo à interface de ferramentas do TurboGears! ;)