Code0x58 commented on issue #3600:
URL:
https://github.com/apache/incubator-heron/issues/3600#issuecomment-671634855
Humm, that shell session makes it look like it should work :s Just to double
check, could you run this code and share the output?
```bash
# see if the python interpreters resolve, and see what they resolve to
for label in python3 python3.6; do
path="$(command -v $label)"
echo "for $label:"
echo " path: $path"
echo " path breakdown:"
namei "$path"
echo " version: $($label -V)"
done
# this is the file that is generated and executed, lets see the shebang line
head -n1 ./bazel-bin/third_party/python/cpplint/cpplint.pex
# try running the binary, just to check it's not the bazel environment that
is different
./bazel-bin/third_party/python/cpplint/cpplint.pex --help | head -n5
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]