Skip to content
Snippets Groups Projects
modules.screen 640 B
Newer Older
  • Learn to ignore specific revisions
  • ssh -i /home/local/.ssh/id_rsa dd-16-12-13@salomon.it4i.cz
    
    # working with modules
    
    # get the current version of Python
    $ python --version
    
    # run Python
    python
    
    # right now is version 2.6.6
    
    # search all available Python's modules
    module avail |& grep Python/
    
    # for example let's choose a new module Python 3.5.1
    $ module load Python/3.5.1-intel-2016.01
    
    # and now get the current version of Python
    $ python --version
    
    # run Python
    python
    
    # that's correct, version 3.5.1
    
    # now turn back to old version you have to unload module
    $ module unload Python/3.5.1-intel-2016.01
    
    $ python -- version
    
    # Python version 2.6.6 is ready to use now