IPython命令找不到终端OSX。 Pip安装

时间:2013-05-25 02:45:57

标签: macos bash command-line terminal ipython

使用通过自制程序安装的Python 2.7。然后我用pip来安装IPython。所以,IPython似乎安装在:

/usr/local/lib/python2.7/site-packages/

我认为这是真的,因为有一个IPython目录和ipython egg。

但是,当我在终端输入ipython时,我得到了:

-bash:ipython:找不到命令

我不明白为什么这只发生在IPython而不是python?另外,我该如何解决这个问题?我应该在.bashrc中添加什么路径?我该如何添加?

目前,我的.bashrc上写着:

PATH = $ PATH:在/ usr / local / bin中/

谢谢!

7 个答案:

答案 0 :(得分:19)

我也有这个问题,以下对我有用,看起来像一个简单的简单解决方案:

pip uninstall ipython

pip install ipython

我正在运行小牛队和最新的小核

答案 1 :(得分:6)

检查IPython是否通过以下命令安装:

$python -m IPython

enter image description here 如果您得到如上图所示的结果。

然后在终端上运行此命令并添加到〜/ .bash_profile 文件

$alias ipython='python -m IPython'

所以试试" ipython"再次在终端上。它对我来说很好。

参考主题:

ipython on MacOS 10.10 - command not found

iPython installed but not found

答案 2 :(得分:4)

使用以下内容在您的homedir中创建.pydistutils.cfg

[global]
verbose=1

[install]
install-scripts=$HOME/bin

[easy_install]
install-scripts=$HOME/bin

然后:pip install -U --user ipython。当然$HOME/bin必须在$PATH。软件包将安装在$HOME/Library/Python中,仅供用户使用,而非系统范围。

答案 3 :(得分:1)

我使用pip3 install ipython可以。

也许ipython依靠python3

答案 4 :(得分:0)

尝试运行brew install ipython

enter image description here

然后运行xcode-select --install

运行brew install git

enter image description here

如果您得到的结果如上图所示。请参阅enter link description here

最后,运行brew install ipython

答案 5 :(得分:0)

尝试了以上类似的解决方案后,当我重新启动终端时,启动了Ipython命令。摆弄完所有东西后,别忘了重启终端!

P.S。我认为brew install Ipython做到了……但不能确定。

答案 6 :(得分:0)

对我来说唯一有帮助的是: python -m pip install --upgrade pip

升级 pip 完成了工作,所有安装都开始正常工作! 试试看。