Skip to content

Commit

Permalink
install python
Browse files Browse the repository at this point in the history
  • Loading branch information
mszhanyi committed Aug 5, 2024
1 parent 0975dac commit e47a1d4
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ ENV PATH /opt/python/cp38-cp38/bin:/usr/local/nvidia/bin:/usr/local/cuda/bin:/us
RUN dnf install -y bash wget &&\
dnf clean dbcache

# Install python3
RUN dnf install -y \
python3.9 \
python39-pip \
cd /usr/local/bin &&\
ln -s /usr/bin/python3 python3.9 &&\
ln -s /usr/bin/pip3 pip3.9;

RUN pip3 install --upgrade pip
RUN pip3 install setuptools>=68.2.2

Expand Down

0 comments on commit e47a1d4

Please sign in to comment.