IPython import failure and python sys.path in general

前端 未结 9 1425
清酒与你
清酒与你 2021-01-17 10:35

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 no

相关标签:
9条回答
  • 2021-01-17 11:22

    For me, the solution was to upgrade IPython from 0.13.2 to the currently newest 4.0.0.

    0 讨论(0)
  • 2021-01-17 11:24

    If you install ipython3 using apt-get, you would not face any problems like that.

    Instead of ipython, you should type ipython3 on the terminal.

    For Python 2 use ipython2.

    0 讨论(0)
  • 2021-01-17 11:24

    pip install ipython instead of apt-get install ipython. The former installs into the virtualenv, the latter installs into your system python packages.

    0 讨论(0)
提交回复
热议问题