ipython笔记本找不到python


2

我家里有几个Python 2版本。因为我只使用ipython笔记本,所以我决定卸载所有Python 2实例,结果是一个坏主意,因为现在我在尝试启动P ython服务器时遇到错误。

-bash: /usr/local/bin/ipython: /usr/local/opt/python/bin/python2.7: bad interpreter: No such file or directory

我该如何解决这个问题?

谢谢。

Answers:


1

您需要重新安装Python 2.7或使用ipython3而不是ipython。如果您收到“未找到命令”错误,请运行此命令:export PATH=/Library/Frameworks/Python.framework/Versions/3.2/bin:$PATH然后再次尝试运行ipython3。


为什么不能用python3运行?
理查德伯格2014年

因为它设置为查找bash所示的Python 2.7:/ usr / local / bin / ipython:/ usr / local / opt / python / bin / python2.7:bad interpreter:没有这样的文件或目录
Duncan X Simpson

我刚做了一点研究,发现这里 iPython还不支持Python 3.
Duncan X Simpson

但IPython 2.0要求Python≥2.7.2或≥3.3.0。它不支持Python 3.0,3.1,3.2,2.5或2.6。- 但我安装了Python 3.4.1版本
Richard Berg 2014年

我可以更改ipython寻找的版本吗?
理查德伯格2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.