From 807c73a8690f4d5151be9cc2600afe825bc5edd1 Mon Sep 17 00:00:00 2001 From: cal Date: Mon, 14 Oct 2024 19:21:56 +1300 Subject: [PATCH] software version management merged with 'environment modules' --- docs/Software/Software_Version_Management.md | 39 -------------------- 1 file changed, 39 deletions(-) delete mode 100644 docs/Software/Software_Version_Management.md diff --git a/docs/Software/Software_Version_Management.md b/docs/Software/Software_Version_Management.md deleted file mode 100644 index 8e59049d3..000000000 --- a/docs/Software/Software_Version_Management.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -created_at: '2019-07-04T20:48:57Z' -tags: -- software -- versions -title: Software Version Management -vote_count: 0 -vote_sum: 0 -zendesk_article_id: 360001045096 -zendesk_section_id: 360000040056 ---- - -Much of the software installed on the NeSI cluster have multiple -versions available as shown on the -[supported applications page](../Supported_Applications/index.md) -or by using the `module avail` or `module spider` commands. - -If only the application name is given a default version will be chosen, -generally the most recent one. However it is good practice to load -modules using the specific version so you can ensure consistent -execution of your job even after the default version has been changed. - -If you need a specific version of software, feel free to ask support and -we may install it. - -## Example - -``` sh -module load ANSYS -``` - -Will load the default version of ANSYS, in this case {{applications.ANSYS.default}}, however -this may change. - -``` sh -module load ANSYS/18.1 -``` - -Will always load that version specifically.