Installs fine using pip, however, I get the following issue when trying to run from the command line:
[noname:~] CTheissen% adsbibdesk --debug
Traceback (most recent call last):
File "/usr/local/bin/adsbibdesk", line 9, in
load_entry_point('adsbibdesk==3.2.0', 'console_scripts', 'adsbibdesk')()
File "/Library/Python/2.7/site-packages/pkg_resources.py", line 356, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/Library/Python/2.7/site-packages/pkg_resources.py", line 2439, in load_entry_point
return ep.load()
File "/Library/Python/2.7/site-packages/pkg_resources.py", line 2155, in load
['name'])
File "/Library/Python/2.7/site-packages/adsbibdesk.py", line 52, in
import AppKit
File "/Library/Python/2.7/site-packages/AppKit/init.py", line 9, in
import Foundation
File "/Library/Python/2.7/site-packages/Foundation/init.py", line 9, in
import CoreFoundation
File "/Library/Python/2.7/site-packages/CoreFoundation/init.py", line 13, in
sys.modules['CoreFoundation'] = mod = objc.ObjCLazyModule('CoreFoundation',
AttributeError: 'module' object has no attribute 'ObjCLazyModule'
It seems there is an issue with a missing module. I'm not sure if the Python install changed between 10.8 and 10.9. Any recommendations you can give me would be appreciated.
First, I'll assure you that it ought to work in 10.9. I'll check if something changed with the AppKit package, because that's ultimately were the problem is.
Installs fine using pip, however, I get the following issue when trying to run from the command line:
[noname:~] CTheissen% adsbibdesk --debug Traceback (most recent call last): File "/usr/local/bin/adsbibdesk", line 9, in
load_entry_point('adsbibdesk==3.2.0', 'console_scripts', 'adsbibdesk')()
File "/Library/Python/2.7/site-packages/pkg_resources.py", line 356, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/Library/Python/2.7/site-packages/pkg_resources.py", line 2439, in load_entry_point
return ep.load()
File "/Library/Python/2.7/site-packages/pkg_resources.py", line 2155, in load
['name'])
File "/Library/Python/2.7/site-packages/adsbibdesk.py", line 52, in
import AppKit
File "/Library/Python/2.7/site-packages/AppKit/init.py", line 9, in
import Foundation
File "/Library/Python/2.7/site-packages/Foundation/init.py", line 9, in
import CoreFoundation
File "/Library/Python/2.7/site-packages/CoreFoundation/init.py", line 13, in
sys.modules['CoreFoundation'] = mod = objc.ObjCLazyModule('CoreFoundation',
AttributeError: 'module' object has no attribute 'ObjCLazyModule'
It seems there is an issue with a missing module. I'm not sure if the Python install changed between 10.8 and 10.9. Any recommendations you can give me would be appreciated.