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
When I tried to build the docker container by running this command:
./docker/bin/build_container.sh
I got an error at line:
RUN pip install -r requirements.txt -I
because the pip command is not found.
What I fixed on my local is installing python3-pip before running the pip command by adding:
USER root RUN set -xe \ && apt-get update \ && apt-get install -y python3-pip
into the Dockerfile
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I tried to build the docker container by running this command:
./docker/bin/build_container.sh
I got an error at line:
RUN pip install -r requirements.txt -I
because the pip command is not found.
What I fixed on my local is installing python3-pip before running the pip command by adding:
into the Dockerfile
The text was updated successfully, but these errors were encountered: