Rosi Darmawati
Rosi Darmawati

Reputation: 1

E: Unable to locate package python3-boto3

I want to install python3-boto3 with code sudo apt-get install python3-boto3 and I get error E: Unable to locate package python3-boto3 what should I do? I used ubuntu 14.04 lts

Upvotes: 0

Views: 3036

Answers (2)

Roshin Raphel
Roshin Raphel

Reputation: 2709

Try :

python3 -m pip install boto3

Upvotes: 2

Marcin
Marcin

Reputation: 238957

I launched an Ubuntu 14.04 instance and managed to install boto3 as follows:

sudo apt-get update

sudo apt-get install python3-pip

sudo pip3 install boto3

Then when you use it, you have to use python3, instead of python.

Upvotes: 1

Related Questions