Skip to content

Commit

Permalink
FIX: remove system python to prevent python=3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcky committed Mar 5, 2024
1 parent 677e159 commit e6e391b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cuda-12.3.1-anaconda-2024-02-py311/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ RUN apt-get install -y tzdata
# Install developer tools
RUN apt-get install -y build-essential && \
apt-get install -y wget && \
apt-get install -y git && \
apt-get install -y python3-pip
apt-get install -y git

# Install LaTeX build system
RUN apt-get install -y texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended texlive-fonts-extra texlive-xetex latexmk xindy dvipng ghostscript cm-super
Expand All @@ -39,6 +38,7 @@ COPY environment.yml .
RUN conda env create -f environment.yml
RUN echo "source activate quantecon" > ~/.bashrc
ENV PATH /opt/conda/envs/quantecon/bin:$PATH
ENV CONDA_DEFAULT_ENV quantecon

# Install JAX
RUN nvcc --version
Expand Down

0 comments on commit e6e391b

Please sign in to comment.