IPython is a feature-rich interactive shell for Python.
0
votes
3answers
86 views
IPython split screen
Is there some way to vertically split the screen in IPython so that I can see my code and the interpreter simultaneously? I'm using Vim for editing. Right now, I use two terminal tabs - one for Vim ...
0
votes
1answer
7 views
edit multiline code snippet in ipython
Is there a way to edit multiline code snippit in ipython? Imagine I wrote the following code,
In [1]: fur i in xrange(10):
...: print i
how can I change the fur to for? My cursor does not ...
3
votes
2answers
3k views
IPython import failure and python sys.path in general
I'm following this post to make one ipython rule all the virtualenvs.
From what I understand, the main idea of the post is that when in a virtualenv, ipython can not find its modules.
...
0
votes
1answer
47 views
Changing browser for IPython Notebook from system default
I would like to keep firefox as my system default browser on my Mac, but launch IPython Notebook in Chrome[1].
This answer led me to my ipython_notebook_config.py file but I can't get an instance of ...
3
votes
2answers
461 views
IPython: redirecting output of a Python script to a file (like bash >)
I have a Python script that I want to run in IPython. I want to redirect (write) the output to a file, similar to:
python my_script.py > my_output.txt
How do I do this when I run the script in ...
1
vote
1answer
22 views
Subsequent list commands in ipdb
I just noticed an odd behavior when using l (i.e. the list command) in ipdb. I think I have seen something similar with the Perl debugger in the past, but it still puzzles me.
The first time I inoke ...
0
votes
0answers
20 views
How to change IPython QTConsole font on Linux
I have been using ipython qtconsole on Win7 and recently I started using RHEL 6.x desktop. When I launch qtconsole ($ ipython qtconsole on bash prompt), the qt window I get has weird font, feel ...
0
votes
0answers
9 views
ipython ipdb, when invoked via ipdb.set_trace(), does not remember the command history while debugging
iPython does remember the command history if I run ipython normally, e.g. to mess around testing basic things in the repl, but I would like to be able to pull up the debugging commands from the ...
1
vote
1answer
72 views
+50
Avoid antialising of R plots in iPython Notebook
In iPython Notebook (with rmagic extension) the plots don't look crisp. They are antialised. I have tried different combinations of width and height for example %R -w 600 -h 400 plot(1) without ...
8
votes
3answers
1k views
Django IPython sqlite complains about naive datetime
I have a new project in Django 1.4, using sqlite db. Also using django_extenstions' shell_plus with no problems.
When I installed IPython, both shell and shell_plus started to complain about:
...
7
votes
5answers
195 views
Step-by-step debugging with IPython
From what I have read, there are two ways to debug code in Python:
With a traditional debugger such as pdb or ipdb. This supports commands such as c for continue, n for step-over, s for step-into ...
0
votes
1answer
29 views
How do I convert a IPython Notebook into a Python file via commandline?
I'm looking at using the .ipynb files as the source of truth and programmatically 'compiling' them into .py files for scheduled jobs/tasks.
The only way I understand to do this is via the GUI. There ...
0
votes
1answer
19 views
Save by cell and not by line #: IPython %save magic: Is there a way?
I'm creating a Django tutorial in an IPython Notebook and I want to use the %save magic to save .py files to create / edit / advance a website as the tutorial progresses. The problem is the %save ...
0
votes
1answer
25 views
IPython Kernel Non-Responsive: Running a Django development server from an IPython Notebook
I'm trying to run this line of code in an IPython Notebook:
!manage.py runserver
It executes manage.py runserver on the command line and then starts the Django development server at ...
0
votes
0answers
5 views
Inserting lines into IPython history
I'm using IPython for some lectures and it would be very convenient if at different points during the lecture if I could add a few lines (say 3 or 4) to the input history. That way I could recall ...
0
votes
1answer
17 views
Ipython deep_reload Exception when importing from sqlalchemy
I am working on several modules of my python library, doing most of the testing through IPython.
Anytime I attempt to reload (deep_reload) a module that uses sqlalchemy, the reload throws an ...
1
vote
1answer
28 views
IPython %save magic error
I'm trying to save a python file that I loaded into my IPython notebook with the %loadpy magic. When I try and save the file with %save settings.py I get the following error:
File `settings.py` ...
0
votes
0answers
20 views
Can't use more than 3 CPUs in IPython for parallel computing
I have a 8 cpu server running a iPython Notebook server in Linux Ubuntu 12.04.1.
I'm trying to run a function in parallel asynchronously, using load balanced view, in a very similar way to the ...
0
votes
0answers
8 views
IPControllerApp registration::purging stalled registration
Let assume my systems are behind the firewall and a few ports are opened for IPython clustering, for example, the SSH port (22) and the Ipython controller port (e.g. 35914). It seems that the ...
0
votes
0answers
15 views
iPython line continuation of command shell string literal
In iPython, when using the command shell command (the exclamation point operator), is there a way to do line continuation of long string literals?
E.g.
t = !echo "Hello"\
"World"
t
produces ...
0
votes
1answer
42 views
Too many values to unpack with python
I have a little problem with Python.
I'm try to write an application for DCM standard who some slice and draw the final model.
This is my code:
from lar import *
from scipy import *
import scipy
...
0
votes
1answer
15 views
automatically do print when viewing __doc__
Can I change the config file to automatically do a print when I'm viewing docstrings?
Contrast 6 and 7 on the iPython console below.
In [6]: zip.__doc__
Out[6]: 'zip(seq1 [, seq2 [...]]) -> ...
0
votes
1answer
34 views
Python: Defining a tuple with unknown values inbetween
This is a most interesting thing in python I've come across in variable referencing as tuple.
Could someone give me an equivalent in C???
h = 1,_,3,_
h
Out[2]: (1, '', 3, '')
h = 1,'',3, ''
h
...
0
votes
1answer
30 views
ipython 0.10.2 crashes with turbogears paster shell
turbogears has intergrated paster shell with Ipython.
for this to work you have to use version 0.10.2 (or less)
so in the virtualenv I did:
pip install ipython=0.10.2
when I run paster shell I ...
-2
votes
0answers
23 views
Error No 22 Invalid Mode [closed]
I am attempting to run this code:
# load column 1 to 8 (ignore last one)
data = np.loadtxt(open("data/" + filename), delimiter=',',
usecols=range(1, 9), skiprows=1)
if ...
1
vote
1answer
49 views
Using pywin32 with iPython
I'm trying to use python with an excel document and trying to use pywin32 to access COM objects. My problem: I can't figure out install pywin32 so I can use it with iPython. Running the installer, it ...
0
votes
1answer
166 views
How to properly install matplotlib on mac 10.7.5? And why is the command “conda” not found after Anaconda is successfully installed?
I tried for a long time to work with python on this Mac. I tried to remove python completely from my mac. Then I realized it was hard to get rid of this default python. Fortunately, I read in the ...
0
votes
1answer
13 views
usepackage and making macros in ipython notebook
How can user macros and packages be included in the latex rendered in markdown cells in ipython?
e.g.:
\usepackage{amssymb}
\newcommand{kms}{\ensuremath{\mathrm{km~s}^{-1}}
3
votes
0answers
84 views
Numpy: apparent memory error
Using Python/Numpy, I'm trying to import a file; however, the script returns an error that I believe is a memory error:
In [1]: import numpy as np
In [2]: npzfile = np.load('cuda400x400x2000.npz')
...
3
votes
3answers
3k views
Embedded interactive shell in IPython
Before switching to IPython v0.11 (using Python 2.6.1), it was possible to embed an interactive IPython shell using for example this,e.g.
from IPython.Shell import IPShellEmbed
ipshell = ...
0
votes
1answer
23 views
Python 2.7 - IPython 'raw_input' and appending to a list - adds 'u' before each item
I'm using Python 2.7 on Mac OSX Lion. I'm using IPython with the Pandas 0.11.0, Numpy and Statsmodels packages.
I'm writing a function that allows the user to do logistic regression on a file, ...
0
votes
0answers
17 views
Add an IPython console to a webpage?
I would like to know if this is possible and if so, where I can find some working examples.
Embed an IPython console on a webpage. I will also want the variables in the console to be available to ...
0
votes
1answer
28 views
IPython.parallel ValueError: cannot create an OBJECT array from memory buffer
I'm trying to write a function to be executed in several IPython engines. The function takes a pandas Series as an argument. Each element of the Series is a string, and the whole Series constitutes a ...
0
votes
1answer
59 views
how to use global variables in IPython
How does IPython handle local variables? I have this function that works in the python shell but will not work in the IPython shell. Can anyone help please?
def change(key,value):
global aname
...
0
votes
1answer
32 views
Strange module auto complete behavior in IPython
See what I mean? At first it showed only RB and absolute_import as choices. STILL I was able to import Gtk. After that it showed a couple of more options. Still isn't a complete list of modules. If I ...
0
votes
0answers
41 views
IPython Notebook Kernel Periodically Dies
Running Linux Mint 13 Maya (64-bit)
On both epd 7.3.2 (academic) and Canopy, when running notebook the kernel dies periodically. I get a pop-up that allows me to restart the kernel. I get this in ...
-1
votes
2answers
26 views
Installing Biopython in new installation of IPython/Python2.7 [closed]
I have Python2.7 installed and was having some issues with installing scipy. Through some Googling, I figured from a thread here (installing scipy on mac 10.6.8) that it is better to install scipy ...
1
vote
2answers
38 views
Setting the working directory of IPython Shell to that of the python file being executed in Canopy
I am new to IPython and I am using the Canopy distribution. The default value of the shell's working directory is /home/username. This is a bit painful, when I work on files which need other files ...
0
votes
3answers
64 views
Reusing code from different IPython notebooks
I am using IPython and want to run functions from one notebook from another (without cutting and pasting them between different notebooks). Is this possible and reasonably easy to do?
Thanks in ...
1
vote
0answers
44 views
Cannot start Canopy's IPython from Windows command shell
I have been using EPD for some time and recently started using Canopy. So now I have both EPD and Canopy installed on my machine, which runs Windows 7 Pro x64. But I just realized I cannot launch ...
1
vote
2answers
35 views
Irregular module detection/autocompletion in IPython
(Check edit for better explanation)
(Screenshot is of the built-in python console in pycharm which uses ipython. Same problem exists if I use ipython separately as well.
In the IPython console, if I ...
0
votes
1answer
43 views
Ipython change interpreter?
How does one change Python interpreter used by Ipython? Ipython is great environment for use in Python scripting, with it's powerfull autocomplete and other neat features. However under Archlinux ...
1
vote
3answers
33 views
Pass non-iterable variables to a function evaluated with map()
I am working in python and trying to convert a function with this structure:
def func(g,h,iterable):
return iterable*(g+h)
for iterable in range(20):
print func(2,3,iterable)
Into a mapped ...
2
votes
1answer
99 views
How to read a .xlsx file using the pandas Library in IPython?
I want to read a .xlsx file using the Python library Pandas and port the data to a postgreSQL table.
All I could do up until now is:
import pandas as pd
data = pd.ExcelFile("*File Name*")
Now I ...
0
votes
2answers
53 views
How to log IPython history to text file?
After some searching and trawling through the IPython documentation and some code, I can't seem to figure out whether it's possible to store the command history (not the output log) to a text file ...
2
votes
0answers
31 views
Running IPython magics in ipdb
Can I use IPython magics such as %paste and %cd in ipdb?. Is there any way to have ipdb interpret these magics in the command line?
0
votes
1answer
24 views
ubuntu scipy works for python2.7 but not for 3.2
I have tried many ways to get scipy to play nice with python3.2 but no joy yet.
I have tried:
sudo apt-get build-dep scipy
no joy
and
sudo apt-get install python-numpy python-scipy ...
0
votes
0answers
28 views
magic function %autoreload not found in ipython?
How can I achieve %autoreload's functionality if it is missing from my ipython 0.12.1?
(Some say that many magic funtctions are removed from newer versions and I think there must be some new way of ...
1
vote
1answer
69 views
IPython pointing to wrong version of Python
I'm running Ubunutu 13.04. When using IPython, it points to a 3.3.1 copy of python that was installed in /usr/bin. I recently installed the most recent release of Python (3.3.2), which installed ...
1
vote
1answer
31 views
IPython notebook in zc.buildout not using eggs path
I've build an environment with zc.buildout including IPython script.
My problem is simple:
if I launch IPython in console, everything is OK and I get all my eggs in sys.path
but if I launch IPython ...



