我正在努力让ipython notebook正常工作。我让它在终端上工作,但我不能让它在我的浏览器中工作。
当我在终端中输入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我真的不确定为什么会发生这样的事情。
发布于 2013-12-31 17:33:39
sudo easy_install,它可能会以根用户的身份安装,避免使用sudo。检查ipython可执行文件是否在中,您的 IPython的tarball是否已损坏。如果你想运行master,你必须用git来深度克隆,然后用你喜欢的选项运行python setup.py (安装,开发,如果你想稳定运行IPython,easy_install进行。您可能需要使用不使用系统库的自制软件进行自定义python构建。https://stackoverflow.com/questions/20852094
复制相似问题