This commit is contained in:
ricwo 2022-11-08 12:18:16 +01:00
parent 3598fea09f
commit 4bd4e38a6e

View file

@ -3,13 +3,13 @@ FROM nvidia/cuda:11.8.0-base-ubuntu22.04
# install python
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
RUN apt install software-properties-common -y
RUN add-apt-repository ppa:deadsnakes/ppa -y
RUN apt update
RUN apt install python3.8 -y
# install pip
RUN sudo apt install python3-pip -y
RUN apt install python3-pip -y
# install portaudio
RUN apt -y install portaudio19-dev