Open In App

How to Install Boto3 on MacOS?

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:



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.

 

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

 

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.

 

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.

 

Article Tags :