I've tried virtually everything I've found so far, like sudo apt remove anki, etc which basically returns package not found.
The closest I've come is running sudo apt-file list anki, which gives me a long list of the files, but when i navigate to that directory (/usr/bin/anki) it says it doesn't exist. Although the app is still on my desktop and still runs when i click it, navigating to my /applications folder shows no file anki.desktop.
Really frustrated, I'm just trying to remove anki from my computer..
which anki, which should tell you exactly what binary or script is being run. I would thenls -l /path/to/that/directory | grep anki, which will tell you whether it's a symlink to something else or what have you. You'll probably find the .desktop file in /usr/share/applications. – Dan Scally Jul 20 '20 at 07:55sudo rm -r usr/bin/ankiso using which anki results in no outputs.. and also couldn't find anki.desktop in usr/share/applications but my other linux desktops apps are there – Caleb McKay Jul 20 '20 at 08:28apt-file list ankipoints you to; are the other files it lists still there? – Dan Scally Jul 20 '20 at 08:33sudo apt-file list anki– Caleb McKay Jul 20 '20 at 08:36apt-file listdoesn't list installed files, it lists the files in the package. I.E. you can run it without ever having installed a package and it'll tell you what files it will create. You could trydpkg -L ankiwhich does the same thing but only for installed files, and you can probably fix this whole thing withsudo dpkg -P ankiwhich means "Purge all files related to the anki package" – Dan Scally Jul 20 '20 at 08:44sudo dpkg -P ankiand said 'ignoring request because not installed' tried -r too same thing. Not sure if there's a way to completely exterminate this from here but looks like whatever we did at least took the main application off. Thanks so much for your help @DanScally – Caleb McKay Jul 20 '20 at 09:18apt-file list ankigives you and remove the files that are still present out of that list. – Dan Scally Jul 20 '20 at 09:23