On Thursday, November 21, 2019 at 11:51:47 PM UTC-8, Florian Schricker wrote: > > Am Dienstag, 19. November 2019 17:51:26 UTC+1 schrieb RjOllos: >> >> If you make an attempt at setting up a dev environment, please do report >> any issues you encounter and we can improve the docs along the way. I'd >> like to reduce the pain points as much as possible and happy to have >> conversations about your experiences. >> > > (I am not having that much time to get things going but here is the > current status.) > > - Ubuntu 19.10 (Virtualbox VM) setup w/ no issues. > - Eclipse for Java Developers 2019-09 R (4.13.0) (Ubuntu related > issues, that snap package was freezing my VM; used binaries) > - PyDev plugin installed within Eclipse using the "Software Site" URL > http://www.pydev.org/updages > - dev setup using TracDev/DevelopmentEnvironmentSetup; I have trac, > genshi, jinja2 sources in one common root directory > - Eclipse > - project for trac created; needed to add gensi / jinja2 sources > as "external libraries" in the project properties PYTHONPATH settings > - running standalone.py w/o args from the Eclipse project gives me > the usage info in the Eclipse console > > What I was wondering now: I have no "normal" trac binaries installed on > this box. How best to get a trac environment created? Is there a way to > actually "build" trac-admin and use it from within trac-trunk as checked > out from svn? Like Run trac/admin/console.py w/ apropriate args? Is it > advisable to have a clean dev box w/ "system installed trac"? >
You may want to create and activate a virtualenv, so that you can have multiple development environments and start over more easily. Either way, you just run "python setup.py develop" from the Trac source and trac-admin will be put on the path, same as if you'd run "python setup.py install". - Ryan -- You received this message because you are subscribed to the Google Groups "Trac Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/trac-dev/14865602-2d1d-43c6-a4f3-66c4e6bf7c48%40googlegroups.com.
