3

我正在尝试在 Mac os上将 pyqtgraph与 anaconda python一起使用

Python 2.7.5 |Anaconda 1.6.1 (x86_64)| (default, Jun 28 2013, 22:20:13) 
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin

我安装了 pyqtgraph pip install pyqtgraph,它似乎工作正常。但是,如果我从库中运行任何命令,我会收到此错误:

Qt internal error: qt_menu.nib could not be loaded. The .nib file should be
placed in QtGui.framework/Versions/Current/Resources/  or in the resources
directory of your application bundle.

我发现了这个SO thread,它似乎与 C++ 应用程序有关。就我而言,我没有 application.app 文件夹,所以我有点迷茫。

4

1 回答 1

9

解决方案是使用python.app(或等效的pythonw)来运行程序,而不仅仅是python. 如果pyqtgraph安装了任何命令,您需要对其进行编辑,以便它们的 shebang 行调用#!/path/to/anaconda/bin/python.app/Contents/MacOS/python.

于 2013-07-25T14:39:22.480 回答