Troque de volta para o python 2.7
Use o comando:
sudo update-alternatives --config python
Se você receber um erro:
update-alternatives: error: no alternatives for python
Atualize seu update-alternatives
da seguinte forma:
ls /usr/bin | grep python | columns
exemplo de saída:
dh_python2 idle-python3.4 python2 python3 python3.4m
dh_python3 python python2.7 python3.4 python3m
Você tem o python2.7
e o python3.4
, run:
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.4 2
Veja update-alternatives --help
Agora você pode executar;
sudo update-alternatives --config python
exemplo de saída:
There are 2 choices for the alternative python (providing /usr/bin/python).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/python3.4 2 auto mode
1 /usr/bin/python2.7 1 manual mode
2 /usr/bin/python3.4 2 manual mode
Press enter to keep the current choice[*], or type selection number: 1
Para tornar o python2.7
como padrão, selecione 1
Executar:
sudo dpkg --configure -a
sudo apt update
use o comando history
para obter o pacote *-python
instalado mais recente, que quebra seu sistema (e, g; python-scapy
) e depois o remove:
sudo apt-get remove python-scapy
Uma vez feito isso, você pode reverter para python3.4
usando o comando update-alternative