Skip to content

Commit 7188d88

Browse files
committed
simpify
1 parent 286c23c commit 7188d88

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

singularity/Singularity.intel_mkl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -214,19 +214,19 @@ EOF
214214
tar xzf numpy-1.26.4.tar.gz
215215
rm numpy-1.26.4.tar.gz
216216
cd numpy-1.26.4/
217-
python -m pip install . -Csetup-args=-Dblas-order=mkl,openblas,blis -Csetup-args=-Dlapack-order=mkl,openblas,lapack
217+
pip install . -Csetup-args=-Dblas-order=mkl,openblas,blis -Csetup-args=-Dlapack-order=mkl,openblas,lapack
218218
cd ..
219219
rm -rf numpy-1.26.4/
220220

221221
wget https://github.com/scipy/scipy/releases/download/v1.15.1/scipy-1.15.1.tar.gz
222222
tar xzf scipy-1.15.1.tar.gz
223223
rm scipy-1.15.1.tar.gz
224224
cd scipy-1.15.1/
225-
export PKG_CONFIG_PATH=$MKLROOT/lib/pkgconfig/
226-
ls $PKG_CONFIG_PATH
227-
python -m pip install . -Csetup-args=-Dblas=mkl-dynamic-lp64-iomp -Csetup-args=-Dlapack=mkl-dynamic-lp64-iomp
225+
pip install . -Csetup-args=-Dblas=mkl-dynamic-lp64-iomp -Csetup-args=-Dlapack=mkl-dynamic-lp64-iomp
228226
cd ..
229227
rm -rf scipy-1.15.1/
228+
229+
export PKG_CONFIG_PATH=$MKLROOT/lib/pkgconfig/
230230
else
231231
pip install "numpy<2"
232232
fi

0 commit comments

Comments
 (0)