mise error
binanc3
HOBBYOP
a month ago
mise WARN Failed to resolve tool version list for python: [/etc/mise/config.toml] python@3.13.13: error sending request for url (https://mise-versions.jdx.dev/tools/python-precompiled-x86%5F64-unknown-linux-gnu.gz): client error (Connect): tunnel error: failed to create underlying connection: tcp connect error: Connection refused (os error 111)
1 Replies
Status changed to Open Railway • about 1 month ago
a month ago
One workaround is to compile from source. You can set MISE_PYTHON_COMPILE=1 in your service variables. Or if you are using a Dockerfile:
ENV MISE_PYTHON_COMPILE=1
RUN mise install python@3.13
Additionally, you can skip using mise entirely. If you are using a Dockerfile, just use FROM python:3.13-slim instead.