Skip to content

Commit

Permalink
Upgrade pip
Browse files Browse the repository at this point in the history
  • Loading branch information
mariano-balto committed Jul 28, 2022
1 parent c529d59 commit 9ac95d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FROM nvidia/cuda:10.1-cudnn7-devel-ubuntu18.04
# >> START Install base software

# Get basic packages
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && apt-get install -y --no-install-recommends --fix-broken \
apt-utils \
bash-completion \
build-essential \
Expand Down Expand Up @@ -158,10 +158,10 @@ WORKDIR /STT/native_client
RUN make NUM_PROCESSES=$(nproc) stt

WORKDIR /STT
RUN cd native_client/python && make NUM_PROCESSES=$(nproc) bindings && \
pip3 install --upgrade pip && \
pip3 install -U pip setuptools wheel && \
pip3 install --upgrade native_client/python/dist/*.whl
RUN cd native_client/python && make NUM_PROCESSES=$(nproc) bindings
RUN pip3 install --upgrade pip
RUN pip3 install -U pip setuptools wheel
RUN pip3 install --upgrade native_client/python/dist/*.whl

RUN cd native_client/ctcdecode && make NUM_PROCESSES=$(nproc) bindings
RUN pip3 install --upgrade native_client/ctcdecode/dist/*.whl
Expand Down
2 changes: 1 addition & 1 deletion native_client/multistrap_raspbian_bullseye.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ aptsources=Raspbian
cleanup=true

[Raspbian]
packages=apt libc6 libc6-dev libffi-dev libstdc++-9-dev linux-libc-dev libpython3.9-dev libsox-dev python3-numpy python3-setuptools
packages=apt libc6 libc6-dev libffi-dev libstdc++-9-dev linux-libc-dev libpython3.9-dev python3.9-distutils libsox-dev python3-numpy
source=http://raspbian.raspberrypi.org/raspbian/
keyring=raspbian-archive-keyring
components=main
Expand Down

0 comments on commit 9ac95d3

Please sign in to comment.