Having just done the update of a script install, I can confirm there is a problem.

For me I solved it by doing an update/upgrade (which installed Python3) and then install pip3 followed by the pip3 redis package.

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install python3-pip
pip3 install redis
1 Like