I can not install pip3 on the Ubuntu

20.04pippython

I need to install pip3 on my ubuntu but if i run sudo apt install python3-pip I get following error:
error installing pip

If I try to run sudo apt --fix-broken install to solve the error, I get the followind message:
error running –fix-broken

Enyone know something I could do?

Best Answer

I solved my problem. I could not stop my mysql.server with sudo apt remove --purge mysql-* but the following command worked for me: sudo systemctl disable mysql.service.

So I removed mysql with sudo apt remove --purge mysql-* and the the installation of pip woked.

Related Question