Miniforge

The Modules software package can dynamically switch and configure the environment settings required to use the application by executing the module command. You can also easily change the environment settings when switching between different versions of an application. Please refer to Modules for details.

You can check a list of available module files with the module avail command.

Version Python Version Module File Name System A System B/C/G Cloud System
24.3.0 (default) 3.10.14 miniforge3/24.3.0 + + +

+ : Available for all users
AU : Available for academic users only
KU : Available for Kyoto University members only
- : Not available

Set up the environment by executing the module command. (Load the version of the module file which you want to use.)

$ module load miniforge3

You can check the standard installed libraries with the conda command.

$ conda list
# packages in environment at /opt/system/app/miniforge3/24.3.0:
#
# Name                    Version                   Build  Channel
_libgcc_mutex             0.1                 conda_forge    conda-forge
_openmp_mutex             4.5                       2_gnu    conda-forge
archspec                  0.2.3              pyhd8ed1ab_0    conda-forge
boltons                   24.0.0             pyhd8ed1ab_0    conda-forge
brotli-python             1.1.0           py310hc6cd4ac_1    conda-forge

...

You can add applications by creating a virtual environment

  1. Creation of a virtual environment

    $ conda create -n myenv
    • When you create a virtual environment, you will be asked to run "conda init," but we recommend that you do not run conda init because the necessary environment settings are already made in the module file.
  2. Switch to the created virtual environment. If the left-most part of the terminal changes (myenv), it is switched to the virtual environment you created.

    $ conda activate myenv
  3. Software Installation

    $ conda install tensorflow

When you log in again, you will need to load the module file and switch to virtual environment.

Please refer to Python for the use of the standard python.