Skip to content
Snippets Groups Projects
Commit bdd046f0 authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Bugfix in build_enstools.sh. Adding installation of a specific version of numpy.

parent 6e918a4e
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ if [ $( ...@@ -31,7 +31,7 @@ if [ $(
) -ne 0 ]; then ) -ne 0 ]; then
echo "Installing a version of python3" echo "Installing a version of python3"
# Compile openmpi with schedulers=slurm # Compile openmpi with schedulers=slurm
spack install python3@3.8: spack install python@3.8:
else else
echo "py-enstools-compression already installed!" echo "py-enstools-compression already installed!"
fi fi
...@@ -50,4 +50,6 @@ source venv/bin/activate ...@@ -50,4 +50,6 @@ source venv/bin/activate
ln -sf $(which python3) ${WORKDIR}/python3 ln -sf $(which python3) ${WORKDIR}/python3
# Install enstools-compression via pip # Install enstools-compression via pip
# TODO: Due to a incompatibility issue between latest numba and numpy I have to add this here. Hopefully removable soon.
pip install numpy==1.23
pip install enstools-compression pip install enstools-compression
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment