即使重新安装后,ipython也无法工作

即使重新安装后,ipython也无法工作,ipython,Ipython,我正在努力让ipython笔记本工作。我让它在终端工作,但我不能让它在我的浏览器工作 当我在终端中键入ipython笔记本时,它会显示-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/

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

当我在终端中键入ipython笔记本时,它会显示-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
我真的不知道为什么会这样

  • 您不需要(也可能不应该)执行
    sudo easy\u install
    它可能会以root用户身份安装,避免
    sudo
    。检查
    ipython
    可执行文件是否在您的
  • github Tarball在IPython的比赛中被打破了。如果您想运行master,则必须使用git进行深度克隆,然后使用您喜欢的选项(安装、开发、符号链接)运行
    python setup.py
  • 如果要稳定运行IPython,请使用pip
  • osx上的readline可能会出现问题(错误的多行编辑、错误的完成、IPython在启动时弹出错误消息)。这是罕见的情况之一,您可能必须为readline使用
    轻松安装
  • Maverick(10.9)在python/numpy/matplotlib方面存在问题。您可能需要使用不使用系统libs的自制的自定义python构建