Permission issue while building wheels for various python packages

Checking the build environment shows that in ARM64 Python image, /home/travis/.cache/pip/wheels is erroneously owned by root.

So a workaround would be:

sudo chown -Rv $USER:$(id -g) ~/.cache/pip/wheels
1 Like