Open In App

How to Install Boto3 on MacOS?

Last Updated : 18 Oct, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Boto3 is a python module created by Amazon Web service for implementing software and deploying them on the internet. It is very useful for developing large projects in different companies. It supports Elastic Compute Cloud, Cloudwatch, and many other cloud platforms. Boto3 is the latest version of Boto and therefore more compatible than previous versions. In this article, we will see an easy way to install Boto3 on macOS.

Pre Requisites

Below is some recommended a thing that you should have for installing the Boto3 module on macOS are:

  • Python
  • PIP or Conda (Depending upon user preference)

Installing Boto3 on MacOS

Installation Using PIP

Users who prefer pip can install the Boto3 module on macOS using the following command in the terminal:

pip install boto3

You will get a similar message once the installation is complete.

Installing-boto3-using-pip

 

Verifying Boto3 Module Installation Using PIP

To verify that Boto3 has been successfully installed on your system, run the following command in the terminal:

pip show boto3

Verifying-boto3-module-using-pip

 

Installation Using Conda

Same as above, Users who prefer conda can install the Boto3 module on macOS using the following command in the terminal:

conda install boto3

Enter y when prompted for yes. Once the installation is complete, You will get a similar message.

Installing-boto3-using-conda

 

Verifying Boto3 Module Installation Using Conda

To verify that Boto3 has been successfully installed on your system, run the following command in the terminal:

conda list boto3

If successfully installed you will get the following output.

Verifying-boto3-module-using-conda

 


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads