(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", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> while True:
... pass # :(
...
我已经全局安装了 IPython,它在这个myvenv
virtualenv 被激活时工作得很好。但是,如果我启动 Django shell(带或不带-i
),它将不会使用 IPython。我以前从来没有遇到过这个问题。
注意:django-admin.py
vsmanage.py
不会有所作为。