You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

1. Changing KEPLER_DIR to ITM_KEPLER_DIR in few, easy, steps

1.1. Make sure you have something to worry about

  • Check whether you have KEPLER_DIR set
echo $KEPLER_DIR
  • check whether KEPLER_DIR is defined in one of your configs
grep -H -n -s KEPLER_DIR $HOME/.bashrc $HOME/.bash_profile $HOME/.tcshrc $HOME/.cshrc $HOME/.login
 
# empty result - nothing to worry about
# something printed on the screen - make sure to update the file (remove the line that defines KEPLER_DIR
  • check whether you have "broken" Kepler installation
find $KEPLER_DIR -name "version" | sed "s|$KEPLER_DIR||" | sed 's/^\///' | cut -f1 -d'/'
 
# empty result - nothing to worry about
# something printed - make sure to move listed directories into new location (see below)

1.2. Create new location for CPO based Kepler

Make sure to create new location for Keplers in CPO flavour. This directory can have any name, and should be located inside ITMWORK

cd $ITMWORK
mkdir cpo_based_kepler
  • No labels