Skip to content
Snippets Groups Projects
Introduction.md 686 B
Newer Older
  • Learn to ignore specific revisions
  • Lukáš Krupčík's avatar
    Lukáš Krupčík committed
    # Introduction
    
    Please, use **only** training account (DD-18-36-\*)
    
    ## Setting Up for Building
    
    Set up an environment to use your own modules. ([EasyBuild#modulepath](https://docs.it4i.cz/software/tools/easybuild/#modulepath))
    
    ### Variant A
    
    For temporary setup.
    
    ```console
    module use $HOME/.local/easybuild/modules/all/
    ```
    
    ### Variant B
    
    Modify your .bash_profile for permanent setup and reload environment (logout, login)
    
    ```console
    cat ~/.bash_profile
    # .bash_profile
    
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
    . ~/.bashrc
    fi
    
    # User specific environment and startup programs
    module use $HOME/.local/easybuild/modules/all/
    
    PATH=$PATH:$HOME/bin
    export PATH
    ```