I'm trying to get our build working on a co-worker...
# general
p
I'm trying to get our build working on a co-workers Mac laptop. We're building with Python3.7:
Copy code
[python-setup]
interpreter_constraints = ['CPython==3.7.*']
but when she runs the
pants
wrapper script she's getting an error that says `ProcessExecutionFailure: Process 'searching for
python2
...` . She does have various
python3
aliases set up via
pyenv
so I'm not sure why it's looking for Python2. In the error you can see that it ran
which -a python2
which fails because there is not
python2
on the
$PATH
. There is a
python2.7
which I could symlink but I'm wondering why it's looking for Python2 at all.