0
votes
0answers
27 views

IPython3 on SL (RHEL)

I am running IPython (and especially a notebook server) on Scientific Linux 6.3 (thus RHEL). I tried to use python3 to run setup and use ipython and also the ipython3 command. However this fails all ...
0
votes
0answers
23 views

ipython3 on centOS 6.3

Has anyone ever used ipython3 with centOS 6.3 ? I got ipython installed (python2.6) but seems I am not able to use it with python3 there seems to be a bug for fedora 18 ...
1
vote
0answers
49 views

Is this a Python 3 regression in IPython Notebook?

I am attempting to create some simple asynchronously-executing animations based on ipythonblocks and I am trying to update the cell output area using clear_output() followed by a grid.show(). For ...
1
vote
1answer
150 views

Does the IPython Notebook have “initialization cells”?

When I open a saved IPython Notebook, I need to evaluate all the cells with imports, function definitions etc. to continue working on the session. It is convenient to click Cell > Run All to do ...
0
votes
2answers
114 views

ipython3 iptest3 error

I am running Mac OSX 10.7.5. I removed Python 2.7 and installed Python 3.3. I installed ipython and when I run iptest3 I get the following error: Traceback (most recent call last): File ...
0
votes
1answer
56 views

Why is there a difference in map() between ipython3 and the ipython3 notebook?

This is the result as expected when I run ipython3 (Python3.2.3) in the shell: In [1]: sum(map(int, str(79))) Out[1]: 16 Now this is the same code in the ipython3 notebook: In [5]: sum(map(int, ...
1
vote
0answers
114 views

IPython %%cython magic gives ImportError: dlopen(long_file_name.so, 2): image not found

OS X, 10.7. I've been going through the first several cython examples in the cython tutorial, and all of the tutorial examples work correctly for me thus far. However, when I try to do what Fernando ...
0
votes
0answers
31 views

iptest3 intermittent failure

Strange iptest3 intermittent failure. In summary, I ran iptest3 once and one test failed. Then I immediately ran that test group again individually (as per iptest3 output) and it passed OK. Then I ...
1
vote
2answers
1k views

installing IPython with two versions of Python (Windows)

Is it possible to have IPython (0.12) installed on the same system with two different versions of Python (v 2.7 and 3.2)? Currently I have both versions of Python running happily on my system. I am ...
1
vote
2answers
199 views

Python3.2 can not recognize UP/DOWN/LEFT/RIGHT keys in interpreter?

I am using ubuntu, linux kernel 2.6.38. I usually use python2, today, I decide to try Python3. I downloads python3 and make install it following the README. However,the python 3.2 interpreter can not ...
2
votes
2answers
637 views

Add arguments using kwargs in Python

Below is my function def list_abc(self, name, id, keywords): cmd = ABC() //ABC is a class cmd.id=id cmd.name=name cmd.keywords=keywords return ABC(cmd) I ...
2
votes
3answers
791 views

How can I launch ipython from shell, by running 'python …'?

I would like to add some commandline options to a python launch code in order to actually invoke an ipython shell. How do I do that?
3
votes
2answers
905 views

libedit/readline conflict with ipython 3.2.2 on OS X 10.7 Lion

I've been trying to set up ipython 3 (running 2.7 works fine) on a mac running Lion, but can't seem to get rid of the following error: 192:~ mlauria$ ...
0
votes
3answers
116 views

I keep getting a syntax error

I keep getting a syntax error with the following line of code: # If the user asked for celsius then x will be a Celsius number converting to Fahrenheit number if x = = c Do you have any idea?
1
vote
1answer
326 views

Python3k replacement for IPython?

So, I'm a huge IPython fan, though I'm sure I don't use nearly all the power it has (mainly tab completion and ? for introspection, though I also use %ed a fair amount). However, I want to really ...
4
votes
2answers
1k views

Py3k and IPython

I'm moving on up to Python 3, but can't seem to find an IPython release for it. The main IPython release page doesn't list anything appropriate. Any help in getting IPython working for Py3k would be ...