Live data from Hacker News

Why IPy: reasons for using IPython interactively

fastml.com

1–10 of 16 posts

Re: Why IPy: reasons for using IPython interactively

#7
post #6

How does ipy work with virtual envs? I've always admired the feature list, but my assumption is that it doesn't really run in a virtual env, would that be accurate?

it works fine with virtualenvs, on osx, you can do

    virtualenv env
    . ./env/bin/activate
    easy_install readline
    pip install ipython
on linux, you can avoid the readline install. i have no idea what the windows scene is, but at least for the past four or so years, i've never had a problem with virtualenvs and ipython.

Re: Why IPy: reasons for using IPython interactively

#8
i've been a moderate fan of ipython; it's the ipython notebook that changed everything for me.

i can have everything inline: syntax-highlignted code, markdown, dynamic plots, and LaTeX equations.

(some examples: http://nbviewer.ipython.org/github/ipython/ipython/blob/mast...)

what's more, you can share you work as a static .ipynb document or dynamically via a server (rather than your localhost, which is the default).

Post reply on HN