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
M1 Mac w/ Mac OS 11.5.1
Docker Desktop: 4.0.0 Docker Engine: 20.10.8 Docker Compose: v2.0.0-rc.2
When running make docker_build, the build fails with the following message:
make docker_build
=> ERROR [5/6] RUN ln -s /usr/bin/python3.8 /usr/bin/python && /usr/bin/python3 -m pip install --upgrade pip && pip install -r /usr/local/src/xblock-sdk/requi 0.2s ------ > [5/6] RUN ln -s /usr/bin/python3.8 /usr/bin/python && /usr/bin/python3 -m pip install --upgrade pip && pip install -r /usr/local/src/xblock-sdk/requirements/dev.txt: #9 0.174 /usr/bin/ln: failed to create symbolic link '/usr/bin/python': File exists
Seemed to resolve by having it first remove the link then recreate it by using ln -s -f
ln -s -f
The text was updated successfully, but these errors were encountered:
No branches or pull requests
M1 Mac w/ Mac OS 11.5.1
Docker Desktop: 4.0.0
Docker Engine: 20.10.8
Docker Compose: v2.0.0-rc.2
When running
make docker_build
, the build fails with the following message:Seemed to resolve by having it first remove the link then recreate it by using
ln -s -f
The text was updated successfully, but these errors were encountered: