Hello! I am asking for help because my Anki app is not opening on my MacBook. I just received a new Macbook before starting school, and I downloaded Anki on it and it was working great. I then transferred my information from my old MacBook (which had Anki on it at the time) to my new Macbook. After this happened, the Anki App will not open for me on my new MacBook. Everytime I click or double click on the icon, it just bounces up once and nothing pops up, not even an error message or anything like that. I have tried deleting and re-downloading the app and restarting my computer, but nothing seems to be working. If anyone has any tips on how to fix this, it would be much appreciated! Thank you so much!
Try the steps from here: Troubleshooting - Anki Manual.
Hello! Thank you for responding. I did try that, and unfortunately, it still did not work. I can’t even get into the Anki system to do a lot of the steps on the troubleshooting guide. It continues to just bounce once when I click on it and nothing happens. I tried updating my Mac to the most recent version and restarting it to see if that would help, but it was ineffective as well. Do you have any other suggestions? Thank you, again!
Never mind! I got it to work!
For the benefit of the next user to have this issue – how did you get it to work?
Would you be so kind as to share what you did to solve this as I am experiencing the same problem.
None of the above works to solve this issue. Any other suggestions? Sad Anki support staff won’t directly comment on this issue.
After being prompted by Anki app for MacOS to update to the latest version, 25.07.5, the app no longer works. Previously I never had any issues with it. Cannot even open the app. Safe mode also fails to launch app. Have trialed every single remedy listed in the user guide and on this forum without success. I am running MacOS sequoia 15.6, although Anki 25.07.5 also failed to work with MacOS 15.5. I have also attempted to downgrade older version of Anki without success. This needs immediate fix by Anki staff.
Hello! So sorry for just now responding. For Anki to get working on my Mac, I opened my applications folder in Finder, and then right clicked on Anki. From there, I selected “Get Info” and then checked off “Open using Rosetta”. After Rosetta was installed, it worked for me!
Hello! Thank you for responding. I did attempt opening the app using Rosetta and re-downloaded anki again after installing Rosetta, and even restarted my mac to see if it would help, but the app just bounces once when I attempt to open it and nothing else happens. Any suggestions as to what may help?
Perhaps try running Anki from the command line in a Terminal window, to see if there are any error messages printed? For standard installations, the command would be: /Applications/Anki.app/Contents/MacOS/launcher
.
This is what I see when I run Anki from the command line, and it starts and runs normally:
% /Applications/Anki.app/Contents/MacOS/launcher
Starting Anki 25.07.5...
2025-08-02 07:19:46,389:INFO:aqt.mediasrv: Serving on http://127.0.0.1:60943
Starting main loop...
Thank you for your suggestion. I tried running it from the Terminal window and got an error message. This is what I got:
Error: Failed to execute: /Users/Library/Application Support/AnkiProgramFiles/.venv/bin/python -c import aqt, sys; sys.argv[0] = ‘Anki’; aqt.run(): No such file or directory (os error 2)
Worthy of mention that I had the Anki app installed right before I attempted to run it using the Terminal window. I’m honestly clueless on what I should do now. Would appreciate any help.
The error message contained the exact string “/Users/Library/…”, and not “/Users/<your_username>/Library/…”? If so, that would explain the problem because the path should be “/Users/<your_username>/Library/…”. The next step would be to figure out why the Anki launcher is using the incorrect path.
But, if instead the error message did contain your username in the path (and you merely omitted it in your post for privacy), the next step would be to track down whether that “python” file exists or if it is missing and from where. For example:
% cd "/Users/myusername/Library/Application Support/AnkiProgramFiles/.venv/bin"
% ls -l python
lrwxr-xr-x@ 1 myusername staff 119 Jul 23 07:12 python -> /Users/myusername/Library/Application Support/AnkiProgramFiles/python/cpython-3.13.5-macos-aarch64-none/bin/python3.13
% cd "/Users/myusername/Library/Application Support/AnkiProgramFiles/python/cpython-3.13.5-macos-aarch64-none/bin"
% ls -l python3.13
-rwxr-xr-x 1 myusername staff 49968 Jul 23 07:12 python3.13