How to Install Anaconda 3 on Windows 11
Go to this link.
Click the green “Download” button.
Once download is complete, click the file. The set-up window will appear.
Click “Next”.
Read the License Agreement and click “I agree”.
Select Install for “Just Me (recommended)”.
Choose the folder that you want the Anaconda installation to be located in. Once done, click “Next”.
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.
Choose whether to register Anaconda as your default Python. It is recommended to leave this box checked.
Click “Install”.
Once installation is complete, click “Next”.
Click “Next”, again.
Click “Finish”.
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.
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
Open Anaconda Prompt
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.
You will be asked if you want to proceed (y/n). Type “y”.
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.