Page MenuHomePhabricator

libc version error when running python 3.4
Closed, ResolvedPublic

Description

I have a virtualenv with python 3.4 for my tool (alkamidbot). When I'm trying to qsub it:

qsub -N 'afterDump.py' -b y -q task -l h_rt=5:00:00 -l h_vmem=2500M -e $HOME/output/ -o $HOME/output/ -wd $HOME/scripts $HOME/scripts/venv/bin/python $HOME/scripts/afterDump.py >/dev/null

This is what I get:

/data/project/alkamidbot/scripts/venv/bin/python: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.17' not found (required by /data/project/alkamidbot/scripts/venv/bin/python)

Is GLIBC on exec servers too old? On bastion-01 it's 2.19.

Event Timeline

Alkamid raised the priority of this task from to Needs Triage.
Alkamid updated the task description. (Show Details)
Alkamid added a project: Toolforge.
Alkamid subscribed.
Restricted Application added a subscriber: Aklapper. · View Herald Transcript

Make sure to pass -l release=trusty to force execution on a trusty (Ubuntu 14.10) rather than a precise (12.10) host.

Right. You've already advised me to do this on IRC, I forgot. Thanks!

valhallasw claimed this task.