We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems that there is a problem in the Docker image,
When run the command
docker run -it --rm \ -v path/to/models:/models \ whisper.cpp:main "./main -m /models/ggml-base.bin -f ./samples/jfk.wav"
the ./main file does not exists.
The text was updated successfully, but these errors were encountered:
The binary is available in /app/build/bin/main. Instead of ./main ..., either /app/build/bin/main ... or ./build/bin/main can be used.
/app/build/bin/main
./main ...
/app/build/bin/main ...
./build/bin/main
Maybe adding the binary to PATH in the Dockerfile could help prevent this issue in the future: RUN cp /app/build/bin/main /usr/bin/whispercpp
RUN cp /app/build/bin/main /usr/bin/whispercpp
Sorry, something went wrong.
The binary is available in /app/build/bin/main. Instead of ./main ..., either /app/build/bin/main ... or ./build/bin/main can be used. Maybe adding the binary to PATH in the Dockerfile could help prevent this issue in the future: RUN cp /app/build/bin/main /usr/bin/whispercpp
Thank you! That seems to work.
No branches or pull requests
It seems that there is a problem in the Docker image,
When run the command
docker run -it --rm \ -v path/to/models:/models \ whisper.cpp:main "./main -m /models/ggml-base.bin -f ./samples/jfk.wav"
the ./main file does not exists.
The text was updated successfully, but these errors were encountered: