How to Install Anaconda 3 on Windows 11

  1. Go to this link.

  2. Click the green “Download” button.

  3. Once download is complete, click the file. The set-up window will appear.

  4. Click “Next”.

  5. Read the License Agreement and click “I agree”.

License Agreement
  1. Select Install for “Just Me (recommended)”.

Install for Just Me
  1. Choose the folder that you want the Anaconda installation to be located in. Once done, click “Next”.

Choose folder for Anaconda installation
  1. Choose whether to add Anaconda to your PATH environment variable. I checked the box so I would be able to run Anaonda in Command Prompt.

  2. Choose whether to register Anaconda as your default Python. It is recommended to leave this box checked.

Adding Anaconda to PATH
  1. Click “Install”.

  2. Once installation is complete, click “Next”.

  3. Click “Next”, again.

  4. Click “Finish”.

  5. To confirm Anaconda was installed, you can search “Anaconda Prompt” and click to open. Type “Python” and it should include Anaconda with the version information.

  6. To confirm installation, you can also search “Anaconda Navigator” on your computer and open it. If the application opens, Anaconda was successfully installed.

Creating a Conda Environment

  1. Open Anaconda Prompt

  2. Type “conda create –name demo-env”. As a note, “demo-env” is the name I chose for my environment name. You have the option to name it anything of your choice.

Creating conda environment
  1. You will be asked if you want to proceed (y/n). Type “y”.

Proceed (y/n)
  1. Next, it will give you a line to copy that will activate the environment. Type it out and press enter. Your conda environment is now activated.

Activate the environment

Developed by: Byron Pritchett, Jr.
Documented by: Byron Pritchett, Jr.
Tested by: -