We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb64731 commit a054120Copy full SHA for a054120
installer/Dockerfile
@@ -25,7 +25,7 @@ RUN python3 -m venv /opt/py3 && \
25
pip install poetry==1.8.5 --break-system-packages && \
26
poetry config virtualenvs.create false && \
27
. /opt/py3/bin/activate && \
28
- if [ "$(uname -m)" = "x86_64" ]; then sed -i 's/^torch.*/torch = {version = "^2.6.0+cpu", source = "pytorch"}/g' pyproject.toml; fi && \
+ if [ "$(uname -m)" = "x86_64" ]; then sed -i 's/^torch.*/torch = {version = "2.6.0+cpu", source = "pytorch"}/g' pyproject.toml; fi && \
29
poetry install && \
30
export MAXKB_CONFIG_TYPE=ENV && python3 /opt/maxkb/app/apps/manage.py compilemessages
31
0 commit comments