--
You received this message because you are subscribed to the Google Groups "Dedalus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dedalus-user...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/dedalus-users/5c93b6e2-3d25-49af-aa22-ba4e96e7bcf8n%40googlegroups.com.
bash Miniconda3-latest-Linux-x86_64.sh
>>> yes
>>> ~/opt-d3/miniconda3
>>> no
source ~/opt-d3/miniconda3/bin/activate
which python3
which pip3
pip3 install --upgrade cython numpy setuptools wheel
pip3 install numpy==1.26.4
cd ~/opt-d3
wget http://www.fftw.org/fftw-3.3.10.tar.gz
tar xzvf fftw-3.3.10.tar.gz
cd fftw-3.3.10
./configure --prefix=$HOME/opt-d3/local CC=mpicc CXX=mpicxx F77=mpif90 MPICC=mpicc MPICXX=mpicxx --enable-shared --enable-mpi --enable-openmp --enable-threads
make
make install
cd ..
wget --content-disposition --no-check-certificate https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.12/hdf5-1.12.1/src/hdf5-1.12.1.tar.bz2
tar xvf hdf5-1.12.1.tar.bz2
cd hdf5-1.12.1/
./configure --prefix=$HOME/opt-d3/local CC=mpicc CXX=mpicxx F77=mpif90 MPICC=mpicc MPICXX=mpicxx --enable-shared --enable-parallel
make
make install
cd ..
git clone https://github.com/h5py/h5py.git
cd h5py
export CC=mpicc
export HDF5_MPI="ON"
export HDF5_DIR=$HOME/opt-d3/local
export LD_LIBRARY_PATH=$HOME/opt-d3/local/:$LD_LIBRARY_PATH
export FFTW_PATH=$HOME/opt-d3/local
export MPI_PATH=/gpfs1/arch/x86_64-rhel7/openmpi-4.1.4-slurm-ib/
CC=mpicc pip3 install mpi4py==3.1.6
pip3 install --no-binary=h5py h5py
CC=mpicc pip3 install --no-cache --no-build-isolation http://github.com/dedalusproject/dedalus/zipball/master/