Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
---
# tasks to install the conda package manager

- name: "[test whether conda executable exists]"
  stat: path="{{ conda_parent_dir }}/conda/bin/conda"
  become: no
  register: conda_binary

# this contains the tasks that require sudo permissions
- name: "[preparing nix install]"
  include_tasks: prepare.yml
  when: conda_binary.stat.exists == False

- name: "[installing conda]"
  include_tasks: install.yml
  when: conda_binary.stat.exists == False

- name: "[adjusting init files]"
  include_tasks: adjust_init_files.yml
  when: conda_add_to_path