Repository URL to install this package:
|
Version:
1.0.0b1 ▾
|
---
# 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