7
votes
2answers
67 views
What are the best iPython tutorials?
I've been using iPython for a few months and I'm always learning new features.
It seems that many of the features are hidden.
What tutorials would you recommend to learn more iPyt …
0
votes
3answers
52 views
What is causing ImportError: No module named pkg_resources after upgrade of Python on os X?
I just updated Python to 2.6.4 on my Mac.
I installed from the dmg package.
The binary did not seem to correctly set my Python path, so I added '/usr/local/lib/python2.6/site-pac …
1
vote
2answers
41 views
IPython in unbuffered mode
Is there a way to run IPython in unbuffered mode?
The same way as python -u gives unbuffered IO for the standard python shell
1
vote
1answer
143 views
Ipython common problems
I love iPython's so many features, magic functions.
I recently upgraded to the latest 0.10 version. But I face following common problems:
%hist one of the most frequently used m …
4
votes
2answers
62 views
How do I embed IPython with working generator expressions?
Certain list comprehensions don't work properly when I embed IPython 0.10 as per the instructions. What's going on with my global namespace?
$ python
>>> import IPython.S …
2
votes
2answers
589 views
How do I use IPython as my emacs python interpreter
I'm running Emacs 22.1.1 and IPython 0.9.1 on OS X and I'd like to be able to run lines/methods/snippets of Python code from my current buffer on demand inside an IPython interpret …
0
votes
2answers
63 views
IPython tab completes only some modules
I'm using the EPD version of python and IPython. After installing some modules using easy_install I notice that, although they can be imported, they cannot be tab completed. They e …
2
votes
2answers
104 views
exit from ipython
I like IPython a lot for working with the python interpreter. However, I continually find myself typing exit to exit, and get prompted "Type exit() to exit."
I know I can type Ct …
0
votes
1answer
35 views
Cutting text from IPython shell using Ctrl-X is broken
I use IPython very frequently and happily. Somehow, cutting text from the shell using the keyboard shortcut, Ctrl-X, is broken. Actually, I have a few different installations of IP …
0
votes
1answer
52 views
scripting ipython through django’s shell_plus
I'm writing a shell script which runs a command through ipython with the -c option like this:
ipython -c "from blah import myfunct; myfunct()"
but I want to invoke ipython throu …
0
votes
2answers
326 views
How to install iPython on Snow Leopard
Does iPython work on Mac OS X 10.6.1 Snow Leopard? I'm python noob, how can I install iPython on my Mac? Links? suggestions?
Thanks
0
votes
4answers
92 views
ipython-error “list indices must be integers” , they ARE integers..
HI there,
I am having a problem. I have an array of 31 elements called colors. I also have another array with integer numbers that vary between 0 and 31, this is called c. I want …
1
vote
2answers
155 views
Running doctests through iPython and pseudo-consoles
I've got a fairly basic doctestable file:
class Foo():
"""
>>> 3+2
5
"""
if __name__ in ("__main__", "__console__"):
import doctest
doctest.testm …
2
votes
4answers
215 views
How to run django shell from Emacs?
I'd like to be able to run ./manage.py shell in an Emacs buffer, with all the nice stuff that you get from ipython, like magic commands and autocompletion. Ideally I would also lik …
2
votes
2answers
117 views
What is required to use ipython in ironpython?
I'd love to use IronPython to explore the .net runtime and libraries, but coming from CPython I miss IPython's completion and shortcuts.
Last time I checked IPython couldn't be us …
