欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mac中-bash: ipython: command not found

程序员文章站 2022-05-27 23:15:50
...

如果已经使用pip install ipython安装了ipython,而且还是出现了如下错误:

-bash: ipython: command not found

那么我们使用;

python -m IPython --version

来查看ipython版本,如果看到版本信息,那么就可以使用python -m IPython 命令来启动ipython

如果要使用ipython命令来启动,可以在用户目录下的 .bash_profile中增加如下:

alias ipython="python -m IPython"

这样就可以了

相关标签: ipython