Anaconda Navigator keyboard shortcuts. Environment management and package installation shortcuts.
These are Anaconda Navigator shortcuts — the desktop cockpit over the conda engine. Environment work maps to chords: Ctrl + N creates a new environment, Ctrl + I installs a package into the selected one, Ctrl + U updates and Ctrl + R removes. The pair that saves projects later is Ctrl + E and Ctrl + Shift + I — export an environment to a file and import one back, which is how a working setup travels to a colleague's machine or a fresh install.
The launcher keys start tools inside the selected environment: Ctrl + L for JupyterLab, Ctrl + J for the classic Notebook, Ctrl + S for Spyder, Ctrl + V for VS Code. That context is the point — the tool opens with exactly the packages of the environment you highlighted, no manual activation.
Section navigation runs on Ctrl + H (Home), Ctrl + Shift + E (Environments), Ctrl + Shift + L (Learning), and Ctrl + Shift + C (Community), with Ctrl + F searching and Ctrl + R refreshing the current view. Ctrl + , opens preferences, F1 help, Ctrl + Shift + R restarts Navigator when it wedges, and Ctrl + Q quits it cleanly.
They drive the same engine. Everything Navigator does — creating environments, installing packages — is conda underneath, and environments made either way appear in both places. Navigator adds the visual layer; the terminal adds scriptability. Ctrl + E's export is the GUI face of the same environment file the CLI produces.
Reproducibility. Ctrl + E writes the environment's package list to a file; Ctrl + Shift + I rebuilds an identical environment from one. Commit that file with a project and anyone can recreate your exact setup, which is the standard cure for works-on-my-machine problems.
Both, by context: with a package selected in an environment's package list it removes that package, while in a browsing view it refreshes. If a chord surprises you, check what has focus before pressing — Navigator scopes several shortcuts to the active pane.
Because Ctrl + L launches it pre-wired to the highlighted environment — correct Python, correct packages, no activate step to forget. From a terminal you get the same result only after activating the environment yourself; Navigator simply removes that failure mode.
Ctrl + Shift + R restarts it in place, which clears most UI wedges; Ctrl + Q followed by a fresh launch is the fuller reset. Neither touches your environments — they live on disk and reappear intact.
Open your assistant with this page preloaded as the source — great for follow-up questions like "which of these work in other apps?"