我已经使用Pip3成功地安装了IPython6.0.0:
pip3 install IPython但是当尝试运行命令时
Ipython我发现了一个错误:
bash: IPython: command not found这是pip list的结果:
(5.1.3)
这是pip3 show IPython的结果
Name: ipython
Version: 6.0.0
Summary: IPython: Productive Interactive Computing
Home-page: https://ipython.org
Author: The IPython Development Team
Author-email: ipython-dev@python.org
License: BSD
Location: /home/pi/.local/lib/python3.5/site-packages
Requires: setuptools, traitlets, jedi, pexpect, pygments, pickleshare, simplegeneric, prompt-toolkit, decorator发布于 2020-05-07 15:13:28
这是一个案件敏感性问题..。
正确的排版是IPython。
pip不区分大小写,请参阅Is PyPI case sensitive? IPython安装为ipython (小写),如pip3 show IPython中所示
巴什对大小写敏感..。
所以,输入ipython即可。
正如您已经指定的pip3,我还建议调用ipython3以避免python2 2/3混淆。
https://stackoverflow.com/questions/59487892
复制相似问题