2014-10-29 61 views
0

我想从http://rumps.readthedocs.org/en/latest/examples.html运行一些演示 使用可笑简单的Mac OS X Python状态栏应用程序, AttributeError: 'module' object has no attribute 'App'python rumps不工作在OS X 10.10 - AttributeError:'模块'对象没有属性'应用'

Mac-28cfe915100b-2:Desktop andi$ pip install rumps 
Requirement already satisfied (use --upgrade to upgrade): rumps in /Library/Python/2.7/site-packages 
Requirement already satisfied (use --upgrade to upgrade): pyobjc-core in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/PyObjC (from rumps) 
Cleaning up... 
Mac-28cfe915100b-2:Desktop andi$ python 
Python 2.7.6 (default, Sep 9 2014, 15:04:36) 
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin 
Type "help", "copyright", "credits" or "license" for more information. 
>>> import rumps 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
    File "rumps.py", line 4, in <module> 
    class AwesomeStatusBarApp(rumps.App): 
AttributeError: 'module' object has no attribute 'App' 

回答

0

无关,与rumps而是复制的演示到名为“rumps.py” AA文件。在您尝试从名为相同的文件的文件中导入的任何其他模块中都会发生同样的错误。

$ echo "import math; math.sqrt(42)" > math.py 
$ python 
Python 2.7.5 (default, Mar 9 2014, 22:15:05) 
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin 
Type "help", "copyright", "credits" or "license" for more information. 
>>> import math 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
    File "math.py", line 1, in <module> 
    import math; math.sqrt(42) 
AttributeError: 'module' object has no attribute 'sqrt' 
相关问题