pip => pip3

This commit is contained in:
Szymon Parafiński 2022-04-03 22:29:35 +02:00
parent 5cf865c15c
commit 8af8ebde32

View File

@ -1,13 +1,13 @@
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -y pip
RUN apt-get install -y python3-pip
RUN apt-get install -y unzip
RUN python3 -m pip install kaggle
RUN pip install pandas
RUN pip install matplotlib
RUN pip install sklearn
RUN pip3 install kaggle
RUN pip3 install pandas
RUN pip3 install matplotlib
RUN pip3 install sklearn
ARG CUTOFF
ARG KAGGLE_USERNAME