Tagged Questions
0
votes
0answers
111 views
ImportError when using Spyder and Ipython in a virtualenv
I create a virtualev (~/ENV) in Ubuntu 12.10, using the --system-site-packages option, where I install using pip sphynx and pyzmq (necessary to install spyder) and then spyder itself and then ipython ...
0
votes
2answers
89 views
Can I package the IPython Notebook, dependencies and additional modules?
I need the following working environment for a project with several developers:
python3
ipython (notebook)
numpy
networkx
matplotlib
Installing these packages on different systems (OSX, Ubuntu, ...
1
vote
1answer
145 views
Why won't Django use IPython?
(myvenv)me:src orokusaki$ python manage.py shell -i ipython
Python 2.7.2 (default, Jun 16 2012, 12:38:40)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", ...
2
votes
1answer
138 views
Python virtualenv --system-site-packages iPython
I am using EPD on OS X and have ipython installed. In my 'general' environment everything is functioning as expected. I installed virtualenv and virtualenvwrapper to generate a dev environment. I ...
1
vote
1answer
101 views
How to add new default packages to virtualenv?
When I create a virtualenv, it installs setuptools and pip. Is it possible to add new packages to this list?
Example use cases:
Following this solution to use ipython in virtualenv (from this ...
1
vote
2answers
345 views
Prevent system-wide and virtualenv ipython from using the same directory for configuration
Recently, I started looking into virtualenv but ran into
problems with the configuration of ipython.
I created the virtual environment using
virtualenv --no-site-packages ENV
From within ENV (i.e. ...
2
votes
1answer
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
930 views
Creating a python virtualenv in Ubuntu 12.04 accessing system installed python packages before local venv packages
I am installing virtualenv and it seems to access the system site packages before accessing the local site packages. Ipython is required by some other programs so it was automatically installed. This ...
0
votes
1answer
430 views
Pycharm doesn't recognize ipython in virtualenv
I made a virtualenv based on Python3.2 and installed ipython 0.12 in it. Pycharm is supposed to recognize ipython automatically, but it doesn't:
Any clues?
3
votes
2answers
1k views
pip freeze only virtualenv installs
So I wanted to install iPython globally and have Django use it with manage.py shell, but I figures out that it will only use iPython if it is installed in the current environment. So using ...
7
votes
1answer
1k views
IPython and virtualenv: ignoring site-packages
Does anyone know how to get IPython to ignore site-packages in the context of a virtualenv that was created with the --no-site-packages flag?
