So I wanted to install iPython globally and have Django use it with manage.py shell, but I figures out that it will only use iPython if it is installed in the current environment. So using virtualenvwrapper i can use toggleglobalsitepackages to import iPython from the global python install. The only problem is when I freeze my requirements in PIP inside the virtualenv it exports all my global installs as well. I would like to be able to freeze only the install in the virtualenv.

Is this possible? Is there some other way I should be looking at my problem?

link|improve this question

1  
You have django inside a virtualenv and you need to use iPython from outside the virtualenv? Is that it? Why don't you just install iPython in your virtualenv? Sorry if I misunderstood – César Nov 9 '11 at 23:28
Yes thats totally correct. I guess what I was trying to do is use pip freeze and not have iPython be in that. When I deploy to my server i have it pip freeze > requirements.txt so that all my applications will be installed. Its unnecessary to install iPython on that server. But your right I could totally do that and either manually create my requirements.txt, have it delete that line from the file every time I sync, or just let iPython stay on it. – saul.shanabrook Nov 9 '11 at 23:46
feedback

2 Answers

up vote 1 down vote accepted

In that case install whatever you need in your virtualenv without iPython and then:

pip freeze > requirements.txt

After that install ipython in your virtualenv so it won't be inside the .txt. After all deleting one line in your requirements.txt is not so hard right? :)

link|improve this answer
1  
Yes your right. I admit it was a little silly. I think what I will do, since I still want it to freeze the requirements.txt every time before I upload (one less thing to remember), I will just write something to delete that one line. – saul.shanabrook Nov 10 '11 at 13:14
feedback

try pip -E /path/to/env/ freeze

link|improve this answer
I think the -E parameter is use inside the requirements.txt file to show a version control project address – saul.shanabrook Nov 10 '11 at 13:13
They are different "-E" params: this one is command line params that says pip to do inside the given virtualenv – bildja Nov 10 '11 at 16:16
Could you possible point me to documentation for this? Does it only freeze the specified virtuelenv even with global site packages enabled? – saul.shanabrook Nov 10 '11 at 21:30
Run "pip help" and see "Options" section. – bildja Nov 11 '11 at 8:50
feedback

Your Answer

 
or
required, but never shown

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