Running Software on Firebird: Difference between revisions
Created page with "== Software Catalog == * Software * Student Software * Assistive Technology Software * Mac Software {| class="wikitable sortable" style="width:100%;" ! Software !! Description !! Access !! Platform !! Accessibility {{#ask: Category:Software |?Description=Description |?Access=Access |?Platform=Platform |?Supports accessibility=Supports accessibility |format=template |template=SoftwareListingRow |limit=500 }} |}" |
Imported from Confluence |
||
| Line 1: | Line 1: | ||
== | Firebird offers several software packages, both open-source and licensed. Access to many packages is controlled through '''modules''': in order to use a particular software package, users must first load the appropriate module, which updates the user’s PATH and other environment variables to ensure the software works as expected. | ||
__TOC__ | |||
= List Available Modules = | |||
To see a list of available software modules: | |||
<syntaxhighlight lang="text"> | |||
module avail | |||
</syntaxhighlight> | |||
= Load a Software Module = | |||
To load a particular module: | |||
<syntaxhighlight lang="text"> | |||
module load mathematica/14 | |||
</syntaxhighlight> | |||
Note that because Firebird is a shared system, some software may be licensed only for one institution. For example, Stata is licensed differently for Swarthmore: | |||
<syntaxhighlight lang="text"> | |||
module avail stata | |||
------------------------------------------------------------------------------------- /opt/modulefiles ------------------------------------------------------------------------------------- | |||
stata/18-laf stata/18-swat (D) | |||
</syntaxhighlight> | |||
Make sure to load the module for your institution. | |||
= View Loaded Modules = | |||
To see a list of currently loaded modules in your environment: | |||
<syntaxhighlight lang="text"> | |||
module list | |||
</syntaxhighlight> | |||
= Unload or Purge Modules = | |||
To unload a specific module: | |||
<syntaxhighlight lang="text"> | |||
module unload mathematica/14 | |||
</syntaxhighlight> | |||
To unload all loaded modules: | |||
<syntaxhighlight lang="text"> | |||
module purge | |||
</syntaxhighlight> | |||
= Specific Software Packages = | |||
<!-- Confluence 'children' macro: replace with a Category or DPL query --> | |||
[[Category:Teaching, Learning, Research]] | |||
<!-- Imported from Confluence page id=165609475 (https://swatkb.atlassian.net/wiki/spaces/ACADTECH/pages/165609475/Software) --> | |||
Revision as of 20:58, 12 May 2026
Firebird offers several software packages, both open-source and licensed. Access to many packages is controlled through modules: in order to use a particular software package, users must first load the appropriate module, which updates the user’s PATH and other environment variables to ensure the software works as expected.
List Available Modules
To see a list of available software modules:
module avail
Load a Software Module
To load a particular module:
module load mathematica/14
Note that because Firebird is a shared system, some software may be licensed only for one institution. For example, Stata is licensed differently for Swarthmore:
module avail stata
------------------------------------------------------------------------------------- /opt/modulefiles -------------------------------------------------------------------------------------
stata/18-laf stata/18-swat (D)
Make sure to load the module for your institution.
View Loaded Modules
To see a list of currently loaded modules in your environment:
module list
Unload or Purge Modules
To unload a specific module:
module unload mathematica/14
To unload all loaded modules:
module purge
Specific Software Packages