main.yml 719 B

123456789101112131415161718192021
  1. ---
  2. # Choose your version of Anaconda by choosing a propper installer.
  3. # - for Miniconda: https://repo.continuum.io/miniconda/
  4. # - for Anaconda: https://repo.continuum.io/archive/
  5. anaconda_installer_uri: "https://repo.continuum.io/miniconda/Miniconda3-4.3.21-Linux-x86_64.sh"
  6. anaconda_installer_md5: "c1c15d3baba15bf50293ae963abef853"
  7. # install per default
  8. anaconda_state: present
  9. # home folder of the installation
  10. anaconda_home_dir: "/opt/anaconda"
  11. # run installer even if Anaconda is already installed
  12. anaconda_force_install: False
  13. # set anaconda binary path at the beginning of $PATH
  14. anaconda_set_path: True
  15. # destination folder for downloaded installer-files
  16. anaconda_installer_dir: "{{ anaconda_home_dir }}"