boto3 pkg error

0

Estou usando o serviço de nuvem aws usando o pacote boto3 para programas python. Eu reinstalei o python3 no vmware sbox [ubuntu] e baixei o boto3 usando pip. agora iam ficando erros de tempo de execução. boto3 é incompatível com python3.6? se assim for eu desinstalar o python3 e usar python padrão? aprecie sugestões

    
por gopalarao 14.04.2018 / 10:34

1 resposta

0

Remova o boto3 instalado pelo pip:

sudo pip uninstall boto3
sudo pip3 uninstall boto3

Instale o boto3 a partir do repositório

sudo apt-get install python-boto3
sudo apt-get install python3-boto3
    
por N0rbert 14.04.2018 / 11:08