Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PC pins Python to taskbar instead of the Anaconda Navigator

So, I installed Anaconda to get access to Spyder, Jupyter, etc.. I then opened Anaconda Navigator and pinned it to my taskbar. I come back a day later, click on the pinned item just for it to open the literal Python shell, not the Anaconda Navigator. Help? Has anyone had this problem?

like image 316
Python Avatar asked Oct 19 '25 13:10

Python


1 Answers

I had the same issue. Pin Anaconda Navigator from the Start Menu instead of pinning the running application. This way it should preserve the icon and correct launcher script arguments.

Open the Start Menu, find Anaconda Navigator, right click and select "Pin to taskbar"

Pin anaconda from start menu

It won't work if you try to pin the running application because the shortcut will be missing the needed arguments (C:\ProgramData\Anaconda3\pythonw.exe C:\ProgramData\Anaconda3\cwp.py C:\ProgramData\Anaconda3 C:\ProgramData\Anaconda3\pythonw.exe C:\ProgramData\Anaconda3\Scripts\anaconda-navigator-script.py).

like image 69
mihow Avatar answered Oct 22 '25 03:10

mihow