Tagged Questions
0
votes
2answers
22 views
Error to launch IPython shell after source install
I have an account in a CentOS server without sudo permission. As a result, I tried to install IPython from source code by python setup.py prefix=<my home directory>.
However, I got the Error:
...
0
votes
1answer
75 views
iPython giving me a syntax error
I'm running python 2.4 right now and have installed iPython onto my ubuntu machine.
The problem I'm having right now is that it keeps giving me an ImportError whenever I try to launch it from the ...
0
votes
0answers
63 views
error of install ipython 0.10.0 on Linux red hat 4.4
I am trying to install ipython 0.10.0 on Linux Red Hat 4.4.4-17.
I use instructions on: http://ipython.org/ipython-doc/stable/install/install.html
$ tar -xzf ipython.tar.gz
$ cd ipython
$ python ...
1
vote
1answer
61 views
IPython check if the user running a script is the root user (Linux)
What is the right way to have an IPython script check to see if the user is currently root?
Here's how I do it in bash scripts:
if [ $(id -u) != "0" ];then
echo "This script must be run as root."
...
2
votes
2answers
295 views
Linux - Linebreak in IPython
Hi I'm new to Linux and I really like the idea of writing and testing python code in a shell. But my problem is how can I do line breaks in IPython. Every time I use the (I think) "normal" shortcut ...
0
votes
1answer
169 views
invoke flask from virtual environment in Python interpreter [closed]
How to import flask from virtual environment in Python interpreter?
Example: I have flask running in my virtual environment which I source for my application.
From IPython shell, I try:
[19]: ...
0
votes
1answer
242 views
Permission denied for .iPython after installing django-CMS
Using the most recent package of django-cms - it requires a package called ipdb.
I installed it and now I cannot get past the error:
[Errno 13] Permission denied: '/var/www/.ipython'
I changed the ...
1
vote
1answer
934 views
iPython: unicode in gnome-terminal (linux)
Why is this happening in the gnome-terminal? I think it supports utf8, printing unicode shouldn't be a problem.
Also, I have these in the .bashrc
LANG="en_US.utf8"
LANGUAGE="en_US.utf8"
...
1
vote
1answer
852 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 through django's ...