classroom/roles/linroom/tasks/julia.yml

13 lines
334 B
YAML
Raw Permalink Normal View History

- name: Install Julia from tarball
block:
- name: Create destination for Julia
file:
path: /opt/Julia
state: directory
- name: Download and unpack Eclipse
unarchive:
2023-09-07 20:38:04 +00:00
src: https://julialang-s3.julialang.org/bin/linux/x64/1.9/julia-1.9.3-linux-x86_64.tar.gz
dest: /opt/Julia
remote_src: yes