I kept looking for answer but didn't find one. I have a virtual env dir, a project dir with a req.txt. When I run pip -r req.txt, it installs some apps from github (source) and some from pypi. The ones from pypi are fine after relocatable call on the virtual evn, however the links in the site-packages for the apps that it installed from github still point to the old directory location.

Anyone else has seen this behavior? Any quick way around it? Also, relocatable is not honoring the --no-site-packages flag that was used on the virtualenv originally. Once you move the virtual and reactivate it, everything is visible from the system's site-packages. Docs indicates this behavior as a fact, so I am wondering if there is any quick way around this?

link|improve this question

What is a "relocatable call on the virtual env"? – hughdbrown Aug 22 '11 at 20:22
Please remember to accept answers to your questions. You do this by clicking the check mark next to the most helpful one. Please go back and do that for your old, answered questions too. – agf Aug 22 '11 at 20:23
I don't understand why you want to move your virtualenvs around. I just have them in ~/.virtualenvs and I am done with it. No muss, no fuss. – hughdbrown Aug 22 '11 at 20:23
when you develop software for others who may not have access to your git repository, then you install everything, package it and give them the tar file. – Val L33 Aug 23 '11 at 13:30
feedback

1 Answer

up vote 3 down vote accepted

As stated in the documentation --relocatable is an experimental option, so it's not surprising you are having difficulties with it. That said, did you remember to re-run --relocatable after installing new packages? If you installed the packages from github with -e, that might be an issue, as it doesn't install into site-packages, but symlinks into it. As an alternative to using --relocatable, you can usually erase the virtualenv-specific files and recreate it in place (which I've done a couple times when switching between platforms).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.