Skip to main content

Command Palette

Search for a command to run...

Add anaconda to right-click menu in windows

Updated
2 min read
Add anaconda to right-click menu in windows
M

I have been a developer for a couple of years now, I write articles to help myself learn and help others on the way, and I believe this is the wisest decision I have taken so far.

I write articles on JavaScript, Web Development, Machine Learning, Self-Improvement, Blogging and Productivity.

The problem

Anaconda prompt is my go-to solution for anything and everything python or data science-related. It is tailored for ease of use and reliability. In windows usually, we have to open the anaconda prompt and then navigate to the folder we want to do our project and then start working on our project. You see this is quite a tedious process and after some time you will get fed up.

The Solution

We can easily overcome this problem by opening the anaconda prompt using the windows right-click menu. Adding anaconda to the windows right-click menu is quite easy.

STEP - 1 Run regedit.exe

Press Windows key + r to open the run window and then type in regedit.exe and press ok.

1 run the command.png

STEP - 2

Navigate to HKEY_CLASSES_ROOT > Directory > Background > shell

STEP - 3

Add a key named AnacondaPrompt and set its value to "Anaconda Prompt Here" (or anything you'd like it to appear as in the right-click context menu)

2 add new key.png

3 add key value.png

STEP - 4

Add a key under this key, called command, and set its value to

cmd.exe /K C:\Anaconda3\Scripts\activate.bat

(may have to change the activate.bat file to wherever your Anaconda is installed)

4 add command.png

STEP - 5

Now you can open your anaconda prompt by right-clicking your desired location.

5 Anconda in right click menu.png

More from this blog

M

Milind Soorya

27 posts

Hey 👋 I am Milind Soorya, a technology blogger from India. I love figuring out new technologies and publishing my findings. Hope this helps you.