Register Login

Install Anaconda on Windows

Updated May 19, 2018

What is Anaconda?

Anaconda is a bundle of popular Python packages and a package manager called Anconda (similar to pip). Some of these packages are numpy, scipy, jupyter, nltk, scikit-learn etc. It is a convenient way of installing several packages at once.

Please follow the steps below in order to Install Anaconda in windows:

1.Search Anaconda on Google. Click on the official link.

2.Select the appropriate OS.

3.Choose the version and bit according to your requirements.

4.Go the download path after the download is complete. Double Click on the executable file to begin the installation process.

 

5.Give the file path where you want it to be installed.

6.To verify the installation go to command prompt. Type conda list.

7.The code will list out all the packages present.

8.Type python. This is done to verify the package, then import scipy.

9.Go to the file path to directly run the package. Click on the file to directly run.

10.You can then import any package that you want to use.

 


×