Difference between revisions of "Sep 19, 2018 - Installing software"
Jump to navigation
Jump to search
| Line 1: | Line 1: | ||
| − | Load modules | + | |
| + | == Load modules == | ||
| + | |||
| + | Add to <code> ~/.bash_profile </code>: | ||
<source> | <source> | ||
| Line 11: | Line 14: | ||
export I_MPI_TCP_NETMASK=10.5.0.0 | export I_MPI_TCP_NETMASK=10.5.0.0 | ||
</source> | </source> | ||
| + | |||
| + | == Install FITSIO == | ||
| + | |||
| + | Download from [https://heasarc.gsfc.nasa.gov/fitsio/] | ||
| + | |||
| + | Run <code> ./configure </code> | ||
| + | |||
| + | Run <code> make </code> | ||
| + | |||
| + | == Install Healpix == | ||
Revision as of 00:16, 20 September 2018
Load modules
Add to ~/.bash_profile :
module load intel/intel-18\n
module load intelmpi/2018.1.163
module load openmpi/3.0.0-intel-18
module load gcc/7.3.0
module load python/2.7.14
#necessary to have Intel MPI working
export I_MPI_FABRICS=shm:tcp
export I_MPI_TCP_NETMASK=10.5.0.0Install FITSIO
Download from [1]
Run ./configure
Run make