Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
> module load imasenv/3.23.1

By default `default kepler/2.5p4-3.0.0` is 0 is loaded, but you can switch to more recent release as well: kepler/2.5p4-3.0.1

Code Block
> module load imasenv/3.23.1
INFO: No wpcdenv was set. Using default one.
IMAS environment loaded.
Please do not forget to set database by calling 'imasdb <machine_name>' !
 
# If you want to switch to more recent version of Kepler, make sure to call module switch
> module switch kepler/2.5p4-3.0.01
 

Now, you can install your personal Kepler installation (please note that since release kepler/2.5p4-3.0.0 and keplertools-1.8.1 it is possible to switch between different installations of Kepler (they will not collide).

Code Block
> kepler_install my_2.5p4-3.0.0
Using KEPLER_DIR at: /afs/eufus.eu/user/g/g2michal/.local/kepler.
Using KEPLER_SRC from KEPLER: /gw/swimas/extra/keplertools/1.8.0.
mkdir: created directory ?/afs/eufus.eu/user/g/g2michal/.local/kepler/my_2.5p4-3.0.0?
mkdir: created directory ?/afs/eufus.eu/user/g/g2michal/.local/kepler/my_2.5p4-3.0.0/.kepler?
mkdir: created directory ?/afs/eufus.eu/user/g/g2michal/.local/kepler/my_2.5p4-3.0.0/.ptolemyII?
mkdir: created directory ?/afs/eufus.eu/user/g/g2michal/.local/kepler/my_2.5p4-3.0.0/KeplerData?
Done installing /afs/eufus.eu/user/g/g2michal/.local/kepler/my_2.5p4-3.0.0/kepler.
?/gw/swimas/extra/keplertools/1.8.1/share/modulefiles/kepler? -> ?/afs/eufus.eu/user/g/g2michal/.local/kepler/modulefiles/kepler/my_2.5p4-3.0.0?
Kepler was installed inside /afs/eufus.eu/user/g/g2michal/.local/kepler/my_2.5p4-3.0.0
Its module file is: /afs/eufus.eu/user/g/g2michal/.local/kepler/modulefiles/kepler/my_2.5p4-3.0.0
To see available installations: kepler_avail
To remove this installation, run: kepler_remove my_2.5p4-3.0.0
To load this environment, run: kepler_load my_2.5p4-3.0.0
( or module load /afs/eufus.eu/user/g/g2michal/.local/kepler/modulefiles/kepler/my_2.5p4-3.0.0 )
Warning
titleKepler location

Note that by default, Kepler is installed inside $HOME/.local/kepler.

You can change this location by creating symbolic link pointing to some other place

Code Block
> mkdir $ITMWORK/my_imas_keplers
> mkdir -p ~/.local
> cd ~/.local
 
# make sure to backup all the stuff you already have there
> mv kepler kepler~
> ln -s $ITMWORK/my_imas_keplers kepler

...

Now, you can list your own Kepler installations by calling

...