Reputation: 1
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
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