重新安装 Xcode 后 Matplotlib 突然崩溃?
我对 python 和 matplotlib 的世界很满意,并且非常熟悉。 我注意到 Mac 上的 Xcode 无法正常工作,因此我安装了 Apple 的最新版本,但它以某种方式破坏了我安装的 matplotlib(或 numpy?)! 我现在尝试
...
/sw/lib/python2.5/site-packages/matplotlib-0.91.1-py2.5-macosx-
10.5-i386.egg/matplotlib/numerix/ma/__init__.py in <module>()
14 print "using maskedarray"
15 else:
---> 16 from numpy.core.ma import *
17 #print "using ma"
18 def getmaskorNone(obj):
ImportError: No module named ma
重新安装 numpy (版本 1.3.0)和 matplotlib (版本 0.91.1)但无济于事。 有任何想法吗?
I was happy in my world of python and matplotlib with a good level of familiarity. I notied Xcode on my Mac wasn't working so I installed the latest version from Apple and it somehow broke my install of matplotlib (or numpy?)! I'm now getting
...
/sw/lib/python2.5/site-packages/matplotlib-0.91.1-py2.5-macosx-
10.5-i386.egg/matplotlib/numerix/ma/__init__.py in <module>()
14 print "using maskedarray"
15 else:
---> 16 from numpy.core.ma import *
17 #print "using ma"
18 def getmaskorNone(obj):
ImportError: No module named ma
I've tried reinstalling numpy (Ver 1.3.0) and matplotlib (Ver 0.91.1) to no avail. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是 Fink 中的 Python,因此 Xcode 与它没有任何关系。
from numpy.core.ma import *
也可以与 Apple 捆绑的 Python 和 NumPy 配合使用。You're using Python from Fink, so Xcode doesn't have anything to do with it.
from numpy.core.ma import *
works fine with Apple's bundled Python and NumPy too.