AppKit depreciated - ImportError: cannot import name 'NSApplication' from 'AppKit'
Is there someone working to update the AppKit issues
import rumps
File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/rumps/init.py", line 26, in
There's a pip module called AppKit that has no relation to PyObjC that, if installed, would cause this issue. If you haven't solved it already (or for others who come across this issue in the future), uninstall AppKit and force reinstall PyObjC-core, i.e.:
pip uninstall AppKit
then
pip install --upgrade --force-reinstall PyObjC PyObjC-core
The comment above (https://github.com/jaredks/rumps/issues/200#issuecomment-1475380684) solved this for me.