1

Generally, there is not an icon for anaconda navigator in Linux. that's why every time I used the terminal to open anaconda navigator. And then if I close the terminal somehow then the total project got closed.

David Foerster
  • 36,264
  • 56
  • 94
  • 147

1 Answers1

1

To create a launcher icon, first create a .desktop file. You should call it Anaconda.desktop. Inside the file, type:

[Desktop Entry]
Name=Anaconda
Exec= anaconda executable path here
Terminal=false
Type=Application

Then do chmod +x Anaconda.desktop so you can execute it. You should be able to execute it properly. Hope this helps

Oqhax
  • 213