Search

Installation

You are here:

Official Installer

Install from the official page here.

 

Or, Directly in Anaconda Prompt

If your computer is already running an earlier Anaconda installation which you want to keep for compatibility with your scripts, you can create a new conda enivronement and install the most recent version of Anaconda there.

  1. Start Anaconda Prompt
  2. Create a new conda environment and give it a name, e.g. newest_Anaconda_version:
    conda create --name newest_Anaconda_version or conda create -n newest_Anaconda_version
  3. Now let’s check if the new conda env was created successfully. The new env should show up in the list of available envs:
    conda info --envs or conda info -e
  4. Activate the newly create environment:
    activate newest_Anaconda_version
  5. The new conda environment is now activated, but still empty (no packages installed yet). So let’s fill it and install the most recent Anaconda version:
    conda install anaconda
  6. Wait for the installation to finish. conda will make sure that all the needed packages that are included in the most recent installation are installed.
  7. Once installation has finished, we are ready to go. To get an overview of the installed packages in the env type:
    conda list

 

Links

https://www.anaconda.com/distribution/

Last Updated on 19 Jun 2019 14:30