出乎意料的是,我的IPython内核停止工作,反复无法重启。错误消息如下所示。我不知道是什么触发了它,以及如何解决它。我尝试升级setuptools并像其他帖子一样分发,但没有成功。感谢您的帮助!
WARNING:root:kernel 0abd40d4-471d-4eef-ba76-0aacea899699 restarted
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py", line 151, in _run_module_as_main
mod_name, loader, code, fname = _get_module_details(mod_name)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py", line 109, in _get_module_details
return _get_module_details(pkg_main_name)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py", line 101, in _get_module_details
loader = get_loader(mod_name)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pkgutil.py", line 464, in get_loader
return find_loader(fullname)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pkgutil.py", line 474, in find_loader
for importer in iter_importers(fullname):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pkgutil.py", line 430, in iter_importers
__import__(pkg)
File "/Library/Python/2.7/site-packages/ipykernel/__init__.py", line 2, in <module>
from .connect import *
File "/Library/Python/2.7/site-packages/ipykernel/connect.py", line 12, in <module>
from IPython.core.profiledir import ProfileDir
File "/Library/Python/2.7/site-packages/IPython/__init__.py", line 48, in <module>
from .terminal.embed import embed
File "/Library/Python/2.7/site-packages/IPython/terminal/embed.py", line 16, in <module>
from IPython.core.interactiveshell import DummyMod
File "/Library/Python/2.7/site-packages/IPython/core/interactiveshell.py", line 31, in <module>
from pickleshare import PickleShareDB
File "/Library/Python/2.7/site-packages/pickleshare.py", line 41, in <module>
from path import path as Path
File "/Library/Python/2.7/site-packages/path.py", line 126, in <module>
except pkg_resources.DistributionNotFound:
NameError: name 'pkg_resources' is not defined
答案 0 :(得分:1)
我最近在使用“sudo”安装anaconda的特定软件包后出现了类似的错误。安装升级了ipython使用的一些核心包,显然改变了与它们相关的权限。在启动ipython时使用“sudo”解决了这个问题。
答案 1 :(得分:1)
在以root身份在anaconda发行版中安装特定软件包之后,我也遇到了此错误。 这是通过改变anaconda目录的所有权来解决的,即
chown -R myname:mygroup anaconda_dir
应该通过以用户而不是root身份安装软件包来防止