python not found
vhmth
PROOP

2 years ago

Hello! I'm trying my hand at nixpacks.toml for the first time. During the install step, it tells me:

 => ERROR [stage-0  6/14] RUN --mount=type=cache,id=kfWxs0zicKI-/root/cache/pip,target=/root/.cache/pip python -m venv --copies /opt/venv && . /opt  0.1s
------                                                                                                                                                    
 > [stage-0  6/14] RUN --mount=type=cache,id=kfWxs0zicKI-/root/cache/pip,target=/root/.cache/pip python -m venv --copies /opt/venv && . /opt/venv/bin/activate && pip install -r requirements.txt:
0.067 /bin/bash: line 1: python: command not found

I don't know much about nixpacks, but I'm assuming this is because I'm running on my Mac, which uses python3 and pip3 by default? This is coming from the tool-supplied install step:

python -m venv --copies /opt/venv && ./opt/venv/bin/activate && pip install -r requirements.txt

This is a loom of what I'm seeing:

https://www.loom.com/share/038294004aaa48dc9c0fe8a90c851336

14 Replies

vhmth
PROOP

2 years ago

6169d578-d99c-4cb2-8cae-61bbd5c416df


2 years ago

share your nixpacks.toml file please


vhmth
PROOP

2 years ago

providers = ["python"]

[phases.setup]
nixPkgs = ["ollama", "geoipupdate"]

[phases.setup-ollama]
cmds = ["ollama serve", "ollama run llama3.1"]
dependsOn = ["setup"]

[phases.setup-geoipupdate]
cmds = ["build-geoip-conf.sh", "geoipupdate -f ./GeoIP.conf -d ./maxmind-dbs"]
dependsOn = ["setup"]

[start]
cmd = "python3 ./webapp/main.py"

2 years ago

try this -

providers = ["python"]

[phases.setup]
    nixPkgs = ["...", "ollama", "geoipupdate"]

[phases.setup-ollama]
    dependsOn = ["setup"]
    cmds = ["ollama serve", "ollama run llama3.1"]

[phases.setup-geoipupdate]
    dependsOn = ["setup"]
    cmds = ["build-geoip-conf.sh", "geoipupdate -f ./GeoIP.conf -d ./maxmind-dbs"]

[start]
    cmd = "python3 ./webapp/main.py"

vhmth
PROOP

2 years ago

🤦🏾‍♂️


vhmth
PROOP

2 years ago

I am so dumb


vhmth
PROOP

2 years ago

checking now


vhmth
PROOP

2 years ago

Yep that did it


vhmth
PROOP

2 years ago

THANK YOU BRODY


2 years ago

the ... are important -


vhmth
PROOP

2 years ago

🙏🏾


2 years ago

no problem


vhmth
PROOP

2 years ago

Yeah I even read that section and totally blanked on this


vhmth
PROOP

2 years ago

Thank you


Loading...