10 months ago
2 Replies
10 months ago
This thread has been marked as public for community involvement, as it does not contain any sensitive or personal information. Any further activity in this thread will be visible to everyone.
Status changed to Open brody • 10 months ago
10 months ago
Could you share more information on your deployment?
If you're using Dockerfile deploys, you need to specify the installation of python3 and pip in your Dockerfile:
FROM ubuntu:latest
RUN apt-get update && apt-get install -y \
python3 \
python3-pip
# Optional: Create a symlink so 'python' and 'pip' point to Python 3 and pip3
RUN ln -s /usr/bin/python3 /usr/bin/python && \
ln -s /usr/bin/pip3 /usr/bin/pip
10 months ago
Hey, in case you are using Nixpacks, make sure you have Python listed as a provider in your service's build settings.
Status changed to Solved uxuz • 9 months ago