ansible-r
ansible-r copied to clipboard
Ansible role to set up (the latest version of) R in Ubuntu systems
When updating packages via the role the 'R-update-package' results in this error: ``` failed: [... (item={'name': 'psych', 'type': 'cran', 'state': 'updated'}) => changed=false ansible_loop_var: item cmd: - /usr/local/bin/R-update-package - psych...
These will.. ``` - name: repository | add public key apt_key: id: FCAE2A0E115C3D8A keyserver: keyserver.ubuntu.com state: present tags: - r-repository-public-key - import_role: name: oefenweb.latest_r vars: r_install_dev: true r_cran_mirror: https://cloud.r-project.org r_version:...
As the check is done on the name of the package, see https://github.com/Oefenweb/ansible-r/pull/51 And the github package are listed with ```/``` in ansible var file
I'm trying to install stuff from github following the suggestions in issue #21 and the README, but it fails as follows. My playbook (basically cut-and-paste of the the README): ```...
It would be great if this role would support `install_github` (and related) from [devtools](https://github.com/hadley/devtools) or from [remotes](https://github.com/r-lib/remotes) (which should be the same...) Besides the convenience, some projects (e.g. [R for...