IPython is a feature-rich interactive shell for Python

learn more… | top users | synonyms

2
votes
0answers
79 views

Strange accuracy difference between ipython and ipython notebook then using fortran module with f2py

I'm encountering a strange accuracy difference between ipython and the ipython notebook when using a fortran module compiled with f2py. My fortran module is: subroutine tt(string,fmt,n_num,out) ...
1
vote
1answer
26 views

Multiple users accessing a same ipynb

I just set up a IPython (0.13.1) Notebook server in order to use it during my introductory course on Python. The server is protected with password and is currently up and running. Now, I need my ...
0
votes
2answers
84 views

Ipython QtConsole %edit

When using the magic function %edit from QtConsole with IPython, the call does not block, and does not execute the saved code. It does however save a temporary file... I think this is intended ...
0
votes
1answer
33 views

QtConsole Development

Is QtConsole developed by the ipython team? I always assumed it was a nice little widget provided from Qt, implemented by iPy. If Qt merely provides a base widget, and all the terminal magic is part ...
0
votes
1answer
20 views

With Ipython.parallel, How could i monitor the progress of a task?

Something like this would be nice : from IPython.parallel import Client dv=Client()[0] import time def waitprogress(n): for i in range(n): time.sleep(1) global progress ...
0
votes
0answers
18 views

Executing Ipython Script from System Shell

In the same way we can execute regular Python using shebangs (or PyLauncher on windows), can we do the same with Ipython and .ipy files? Registering IPython in Windows registry so double-click .ipy ...
0
votes
1answer
28 views

Ipython Configuration - Config Classes Overview

I have read, checked the <0.11 docs, and then re-read the IPython manual. Granted I may not have memorized each page, but there is a significant lack of organization and clarity for beginners. ...
0
votes
2answers
21 views

user inputs ipython

If I want a user to enter a number, I could have x = int(raw_input('Enter an integer: ')) What if I want the user to enter 10 numbers that can be sorted later. How could I prompt the user to enter ...
1
vote
1answer
86 views

ipython notebook 0.12.1 and 0.13.1 compatibility

I created an ipython notebook with version 0.13.1 of ipython on fedora that works fine. When I try to read it on ipython 0.12.1 on opensuse I obtain a void white notebook. Is there a known problem on ...
0
votes
2answers
22 views

optimize in scipy iPython error

After help from Jamie on this post, I know I need to use scipy.optimize. However, I keep receiving the following error: Traceback (most recent call last): File "./hw7problem5.py", line 19, in ...
1
vote
1answer
39 views

maximum of a function on a specified domain in iPython

I am trying to find the maximum of the following function for 1 < R < 20. How can I implement this into the code? The solution is supposed to be R is approx 15.5 or so. #!/usr/bin/env python ...
0
votes
3answers
40 views

Python Qtconsole: QApp = QCoreApplication.instance() returns None on Linux and a valid QApplication on Windows

I have software which has a GUI interface and a command line interface. What it should do is detect if it is being run in a qtconsole. If it is, it will not create a new QApplication and show the GUI ...
1
vote
2answers
48 views

Opening an IPython shell on any (uncatched) exception

I have defined the following (embedded) shell in Python: from IPython.config.loader import Config cfg = Config() prompt_config = cfg.PromptManager prompt_config.in_template = 'N.In <\\#>: ' ...
2
votes
2answers
93 views

Can I get a python object from its memory address?

I'm learning how to use Qt with PyQt, and I have a QTabelView with a StandardItemModel I've populated the model successfully and hooked up the itemChanged signal to a slot. I'd l'd like to mess around ...
0
votes
1answer
27 views

debugging ipython after pep8 returns nothing but I still have a syntax error

After receiving the needed help from phihag on my previous post, I noticed that I didn't have result for all even numbers. However, I keep receiving a syntax error at line 47 invalid syntax with else. ...
0
votes
1answer
48 views

debugging invalid syntax error iPython

I am greeted with the following syntax error after I execute the program thanks thkang from this post You entered: ./# Expanded to: ./# ================= File "./largestoddxyz.py", line 43 ...
0
votes
2answers
75 views

Starting IPython with Mountain Lion 10.8

Prior to last weeks ML 10.8 I would invoke the IPython web notebook using ipython notebook --pylab=inline where I was running Python3. Post upgrade everything changed for the worse. A lot of hacking ...
2
votes
1answer
71 views

“Save as” in IPython notebook

I want to save a file with a different name, and keep the file with the old name (ie, no renaming) in Ipython Notebook. Is there a standard "save as" feature?
0
votes
3answers
43 views

bracket matching in ipython

Is there an option to automatically close brackets,quotes, parentheses etc in IPython? I hoped there was a feature similar to that in the gedit plugin.
0
votes
0answers
46 views

Tab completion in eshell (emacs) does not work for ipython

I use eshell provided by emacs a lot and like it very much. However, the tab completion does not work for ipython keywords, such as 'import'. Have you met the same problem, and how to set up emacs ...
0
votes
1answer
62 views

How do you write unit tests for python applications that embed IPython Interactive Shell

I have a long running simulation that I need to stop at a given time in the simulation and retrieve and observe some information and then allow the simulation to continue. I've recently started using ...
0
votes
1answer
68 views

ipython notebook as a web tool dev platform

I am planning to port an existing application (or at least part of it where we process data to create graphs interactively) into an ipython based UI. I am wondering if it is possible to create a menu ...
2
votes
1answer
38 views

why is there no reference between the app and the widget?

This is a follow up to why will the application show after sys.exit command? I'm following this tutorial: http://zetcode.com/tutorials/pyqt4/firstprograms/ I modified the code slightly to test ...
1
vote
2answers
47 views

why will the application show after sys.exit command?

I'm following this tutorial: http://zetcode.com/tutorials/pyqt4/firstprograms/ and on the very first example I don't understand why does the application show only after the command: ...
4
votes
1answer
60 views

Which is the difference in assigning a variable and working directly in array,in IPython

I'm playing around with IPython and remote control: in: from IPython Import parallel as p in: rc=p.client(profile=myprofile) There is a behavior difference between in: rc[0].block out: False ...
1
vote
1answer
88 views

External editor for IPython notebook

I am using IPython notebook and I want to edit programs in an external editor. How do I get the %edit file_name.py to open an editor such as Notepad++.
2
votes
1answer
84 views

Change IPython working directory

When I open an IPython notebook it defaults to C:\Users\USERNAME. How can I change this so to another location? Thanks.
4
votes
1answer
197 views

running python on vim

Over on askubuntu.com I was told how to run python on Vim. I am testing the set up which works with the code 1st or 2nd code python code at using python to solve a non linear equation. The only ...
1
vote
0answers
57 views

What is an ExpatError?

I've been playing around with parsing XML with Python, and I've found that making a spelling mistake in my XML tags raises an ExpatError. Since I don't think my code is residing in a foreign country, ...
0
votes
1answer
76 views

ipython 0.13 zmq errors

I encounter weird behavior of an ipython cluster. The calculations finish, but many results never reach the client (and the engines just idle after finishing their first calculation). I suspect ...
2
votes
1answer
81 views

Using IPython as an effective debugger

How can I embed an IPython shell in my code and have it automatically display the line number and function in which it was invoked? I currently have the following setup to embed IPython shells in my ...
0
votes
1answer
50 views

Keep script variables in scope when loading from irb

When I execute a script in IPython, by using run myscript.py, the names from the script are then available in the interactive interpreter for me to experiment with further. In irb this doesn't seem ...
1
vote
1answer
122 views

ipython won't run on Windows

After installing ipython on Windows via pip install ipython, I am unable to run it and receive the following error. > ipython Traceback (most recent call last): File ...
0
votes
1answer
68 views

Changing the configuration file of iPython QtConsole has no effect

On my Windows 7 system, making changes to the iPython configuration file for the Qt console doesn't seem to have any effect. I just use (and changed) the default profile (not explicitly stated in the ...
1
vote
1answer
84 views

Run parts of a ipython notebook in a loop / with different input parameter

I have written a ipython notebook, which analyses a dataset. Now I want to use this code to loop over different datasets. The code is split into about 50 cells (including comments, markdown ...
0
votes
1answer
49 views

How to change drive in IPython under windows

How can I change drive letter while in IPython under windows? For example, !cd W: does not make W: the current path, it just changes the path if you would change to drive W. Changing to a dos shell ...
0
votes
0answers
45 views

unable to unpickle with magic function

I am trying to change this script (original post) so it runs on IPython 0.13.1 under Python 2.7.3. It seems like I succeeded making it save the pickle, but I am now unable to unpickle. Code as below: ...
2
votes
1answer
887 views

ipython --pylab on cygwin: TclError: no display name and no $DISPLAY environment variable

I recently installed ipython as per instructions here: http://ardiyu07.blogspot.com/2012/04/ipython-012-installation-in-cygwin.html. When I run 'ipython --pylab' I get the error message below. I have ...
2
votes
1answer
96 views

ctypes in python crashes with memset

I am trying to erase password string from memory like it is suggested in here. I wrote that little snippet: import ctypes, sys def zerome(string): location = id(string) + 20 size = ...
3
votes
1answer
28 views

Why does `ipython foo.py bar.py` only print `foo.py`'s output?

The IPython 0.13.1 documentation says: $ ipython -h ... Usage ipython [subcommand] [options] [files] If invoked with no options, it executes all the files listed in sequence and exits, ...
2
votes
0answers
108 views

Using Jython through IPython: is readline still an issue?

I'd like to use the Jython interpreter with IPython, so that I could use things like tab completion and perhaps the IPython notebook. The IPython FAQ site steps around whether this is possible. I have ...
0
votes
4answers
62 views

Debugging with breakpoints from console in Python

I'm trying to migrate from Matlab to python. One of the things that is nice about Matlab is that when debugging I can put a breakpoint in some code and do something to call that code form the command ...
0
votes
1answer
167 views

IPython Notebook version issue (IPython 0.13)

On my Windows 7 desktop I have IPython version 0.13 installed -- I get version 0.13 notebook's menu etc but when I try to load certain ipynb files - for eg ...
2
votes
2answers
105 views

Open Ipython notebook in a directory containing character like àèìòù

Why I can't open Ipython notebook in this directory? ~/Documenti/Università I think it is due to the character "à" but how can I solve this problem? Should really change of the directory? Here the ...
0
votes
0answers
96 views

IPython qtconsole error

I recently installed Anaconda as my default python interpreter, and IPython 0.13 is included in the bundle. When I try to run ipython qtconsole, I get the following error: > ipython qtconsole ...
0
votes
1answer
50 views

Multi-user IPython Authentication/Security

I'm trying to setup an IPython notebook cluster, hosted on somewhere in the Interwebz, to be used by me, some co-workers and one of my kids, each having their own notebook. However, given that IPython ...
1
vote
2answers
260 views

IPython Notebook locale error

After installing the latest Mac OSX 64-bit Anaconda Python distribution, I keep getting a ValueError when trying to start the IPython Notebook. Starting ipython works fine: 3-millerc-~:ipython ...
1
vote
1answer
164 views

“ImportError: No module named” when trying to run Python script

I'm trying to run a script that launches, amongst other things, a python script. I get a ImportError: No module named ..., however, if I launch ipython and import the same module in the same way ...
0
votes
3answers
126 views

Is it possible to display an objects instance variables in IPython like Matlab does?

I'm trying to move away from Matlab to Python. While the magic ? in IPython is nice, one very nice feature of Matlab is that you can see on the command line (by omitting the ;) the instance variables ...
0
votes
2answers
203 views

Plot an IPython Notebook figure inline with fig.show()?

I'm calling the inline mode for IPython Notebook using; %pylab inline And the following code plots a figure immediately at the cell; fig = plt.figure() axes = fig.add_axes([0, 0, 1, 1]) However ...

1 2 3 4 5 17