Siguiendo la guia de : http://www.tryton-erp.es/blog/crear-un-entorno-tryton-con-las-herramientas-nantic.html y con modificaciones sugeridas por pokoli via IRC en freenode.net / tryton-es Gracias x la paciencia POKOLI y espero sirvan a otros.
virtualcreate informov --system-site-packages --distribute --setuptools #virtualcreate nuevo-proyecto --system-site-packages cd informov virtualactive #hg clone https://bitbucket.org/nantic/nan_tryton_utils tasks # este da error hg clone https://bitbucket.org/nantic/tryton-tasks tasks #añadido por pokoli # Pokoli indica que al poner invoke bs se instala todo, pero requiere previamente hacer el paso 1 hg clone http://bitbucket.org/nantic/tryton-config config hg clone http://bitbucket.org/nantic/nan_tryton_utils utils # en este paso me fallaba asi que me ha obligado a instalar: wget http://pypi.python.org/packages/source/d/distribute/distribute-0.6.tar.gz tar -xzvf distribute-0.6.tar.gz cd distribute-0.6 python setup.py install easy_install -U distribute cd .. pip install -r tasks/requirements.txt #ahora se instala bien. pip install -r config/requirements.txt #sin instalar este no va #los add2 no hacen falta, los hace solos #add2virtualenv trytond #add2virtualenv proteus cd utils ./script-symlinks.sh cd .. touch local.cfg #Configurar el ssh para que no pida pass en bitbucket # https://confluence.atlassian.com/bitbucket/set-up-ssh-for-git-728138079.html #ssh-keygen # LA CLAVE DEBE SER LA MISMA QUE BITBUCKET #cat ~/.ssh/id_rsa.pub | xclip -sel clip # instalado: apt-get install linux-patch-grsecurity2 # si nos da error de hg #hg init invoke clone --config config/base.cfg #Error : http://pastebin.com/Px8SKg9X invoke clone #Error: http://pastebin.com/8pz4dcnj
