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 e47a1d4 commit 5605aa4
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ RUN dnf install -y bash wget &&\

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

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

0 comments on commit 5605aa4

Please sign in to comment.