From 7ebe6e19ed7490318c078920146a4e7a94f68a64 Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Wed, 16 Oct 2024 23:22:20 -0700 Subject: [PATCH] pip install fix --- docker/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index aff014a..93d9038 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -11,18 +11,18 @@ WORKDIR /$ENVDIR RUN sudo apt-get install -yq git RUN sudo apt-get install --no-install-recommends -yq make gcc gfortran libssl-dev cmake RUN sudo apt-get install -yq libopenblas-dev libmpich-dev libblas-dev liblapack-dev libscalapack-mpi-dev libhdf5-mpi-dev hdf5-tools -RUN sudo apt-get install -yq vim +# RUN sudo apt-get install -yq vim RUN sudo apt-get install -yq git-lfs -RUN sudo apt-get install -yq valgrind +# RUN sudo apt-get install -yq valgrind RUN sudo apt-get install -yq wget -RUN sudo apt-get install -yq astyle +# RUN sudo apt-get install -yq astyle # install python RUN sudo apt-get install -yq python3 RUN sudo apt-get install -yq python3-dev RUN sudo apt-get install -yq python3-pip -RUN sudo pip3 install --upgrade pip -RUN sudo pip3 install sphinx-autoapi sphinx_rtd_theme +RUN sudo python3 -m pip install --upgrade pip +RUN sudo python3 -m pip install sphinx-autoapi sphinx_rtd_theme #RUN sudo pip3 install numpy scipy argparse tables PyYAML h5py pybind11 pytest mpi4py merlin # RUN sudo apt-get clean -q