“尽管已经安装了

时间:2017-11-16 10:54:06

标签: python ipython

我正在尝试使用以下命令启动ipython:python -m ipython

启动时出现以下错误:C:\Program Files\Python36\python.exe: No module named ipython

这很奇怪,因为当我运行python -m pip show ipython时,我收到以下消息:

Name: ipython
Version: 6.2.1
Summary: IPython: Productive Interactive Computing
Home-page: https://ipython.org
Author: The IPython Development Team
Author-email: ipython-dev@python.org
License: BSD
Location: c:\program files\python36\lib\site-packages
Requires: simplegeneric, setuptools, decorator, pickleshare, traitlets,         
pygments, colorama, prompt-toolkit, jedi

我已经确保所有依赖项都已正确安装。 你能帮我吗?

2 个答案:

答案 0 :(得分:0)

它实际拼写为IPython(大写字母I和P开始)。

python -m IPython

会做的。

编辑:可能会出现混淆,因为pypi服务允许包名称和模块名称不同。

答案 1 :(得分:0)

我通过使用以下命令解决了这个问题:

pip install IPython==5.0 --user

IPython版本需要与python版本配对,我有一个python2.7