install python

This commit is contained in:
ricwo 2022-11-08 12:17:49 +01:00
parent 8c39bfe14a
commit 3598fea09f

View file

@ -1,7 +1,15 @@
FROM nvidia/cuda:11.8.0-base-ubuntu22.04
# install python
RUN apt-get update && apt-get install -y python3.8 python3-pip
RUN apt-get update
RUN sudo apt install software-properties-common -y
RUN sudo add-apt-repository ppa:deadsnakes/ppa -y
RUN sudo apt update
RUN sudo apt install python3.8 -y
# install pip
RUN sudo apt install python3-pip -y
# install portaudio
RUN apt -y install portaudio19-dev