Anaconda Python

Document Control

TODO:

  • Overall structure.
  • Initial draft complete
  • Testing
  • Ready

Ansible Role Ansible Quality Score Build Status GitHub issues GitHub last commit

User Story: Anaconda

As a: UNIX and Linux system administrator

I want to: install Anaconda Python

So that: use conda and install python modules as a regular user.

Using the role

Using the role in a playbook
---
- name: Install anaconda
  hosts: all

  tasks:
    - name: anaconda is configured
      import_role:
        name: crivetimihai.anaconda
      vars:
        anaconda_url: "https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh"
        anaconda_path: "~/anaconda3"
        anaconda_user: ansible
      tags: anaconda
# Install the role
ansible-galaxy install crivetimihai.anaconda

# Run the playbook
ansible-playbook anaconda-playbook.yml

Last update: 2020-02-04