Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I can't dockerize my project with ctcdecode library #207

Open
284nnuS opened this issue Jul 10, 2022 · 1 comment
Open

I can't dockerize my project with ctcdecode library #207

284nnuS opened this issue Jul 10, 2022 · 1 comment

Comments

@284nnuS
Copy link

284nnuS commented Jul 10, 2022

i tried
RUN git clone --recursive https://github.com/parlance/ctcdecode.git
RUN cd ctcdecode
RUN pip install .
but i receiving executor failed running [/bin/sh -c git clone --recursive https://github.com/parlance/ctcdecode.git]: exit code: 1
so what should i do ? pls help

@GreatHalf
Copy link

I had the same problem. My pip version did not support the 'pip install .' command.
Updating pip right before fixed it.

RUN git clone --recursive https://github.com/parlance/ctcdecode.git
RUN cd ctcdecode
RUN pip install --upgrade pip && \
  pip install .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants