- Get an Account and store your account name
export CSCS_USER=unixname
. - Configure direct access to the computing system. You can use the
ssh_config
template:$ cat >> ~/.ssh/config <<EOF
This is a small gist to install ltfatpy from anaconda
Steps
- Install anaconda (I recommend miniconda) https://conda.io/miniconda.html
- Add conda to the path (miniconda2)
export PATH=/scratch/snx3000/nperraud/miniconda2/bin:$PATH
- Create an environnement and activate it
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
argon_create_file() { | |
if [ -f $1 ]; then | |
sudo rm $1 | |
fi | |
sudo touch $1 | |
sudo chmod 666 $1 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Host ela.cscs.ch | |
User nperraud | |
Host ela5.cscs.ch | |
User nperraud | |
Match host !ela.cscs.ch,!ela5.cscs.ch,*.cscs.ch | |
ControlMaster auto | |
ControlPath ~/.ssh/%r@%h:%p | |
ControlPersist 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module load cray-fftw | |
module load cray-python | |
module load daint-gpu | |
module load CrayGNU/.20.11 | |
export LIBRARY_PATH=$CRAY_LD_LIBRARY_PATH:$LIBRARY_PATH | |
export CRAYPE_LINK_TYPE=dynamic | |
CC=cc pip install tifresi |