重新安装后,ipython将无法正常工作

时间:2013-12-31 05:14:55

标签: ipython

我非常努力地让ipython笔记本工作。我让它在终端工作,但我不能让它在我的浏览器中工作。

当我在终端输入ipython notebook时,它说-bash:ipython:command not found

     MacBook-Air:~ me$ sudo easy_install https://github.com/ipython/ipython/tarball/master
     Downloading https://github.com/ipython/ipython/tarball/master
     error: None
     MacBook-Air:~ me$ ipython
     -bash: ipython: command not found

我真的不确定为什么会这样。

1 个答案:

答案 0 :(得分:0)

  1. 你不需要(你可能不应该)做sudo easy_install它可能会以root用户身份安装,避免sudo。检查ipython可执行文件是否在您的 $PATH
  2. github tarball在IPython中被破坏了。如果你想运行master,你必须使用git深度克隆,然后使用你喜欢的选项运行python setup.py(安装,开发,符号链接)......
  3. 如果要运行IPython稳定,请使用pip。
  4. 您可能在osx上遇到readline问题(错误的多行编辑,错误的完成,启动时出现错误的IPython错误消息)这是罕见情况一个可能必须使用easy_install作为readline。
  5. Maverick(10.9)存在python / numpy / matplotlib的问题,可能需要使用不使用系统库的自制程序进行自定义python构建。