* Ryan J Ollos <[email protected]> [2010-01-04 12:21]: > 1. When running `python setup.py develop` for Genshi and Trac as described > in [1], I've found that I need to run the command as sudo, or else I get the
You shouldn't need to. And you should not do that. You will have to clean your /usr/local/... python dirs from what you have installed there. > error [3]. Am I doing something wrong, or should the instructions be > updated? [...] > [3] > ~/tracdev/genshi-trunk$ python setup.py develop > running develop > Checking .pth file support in /usr/local/lib/python2.6/dist-packages/ > error: can't create or remove files in install directory As seen here it tries to install into /usr/local and not into your virtual env. Did you run 'setup.py develop' from the shell where you did 'source bin/activate'? When you want to work with your virtual env you always have to issue a 'source bin/activate' in that shell. hth silk -- You received this message because you are subscribed to the Google Groups "Trac Development" 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/trac-dev?hl=en.
