Closed cpaxton closed 7 years ago
A workaround like the following may be needed: https://github.com/ahundt/robotics_setup/blob/d413b0ea4abf18d288f688dfbdb8727d908b3b8e/python.sh
# install ubuntu python package
sudo apt-get install -y python-setuptools python-dev build-essential
# workaround for pip 8.1.2 failing to upgrade on Ubuntu 16.04
# see https://github.com/pypa/pip/issues/3776
curl -o $HOME/Downloads/get-pip.py https://bootstrap.pypa.io/get-pip.py
sudo python3 $HOME/Downloads/get-pip.py --user
I think these travis scripts could really benefit from using robotics_setup. It contains many workarounds I update continuously as I encounter them. We can simply lock to a specific hashed version and update only when specific fixes are needed, that's what I do in grl.
seems fixed