From the course: AWS for Developers: S3

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Installing the SDK Boto3

Installing the SDK Boto3 - Amazon Web Services (AWS) Tutorial

From the course: AWS for Developers: S3

Start my 1-month free trial

Installing the SDK Boto3

- [Instructor] We are now going to get our SDK up and running on our machines. Now the way that you're going to do this will vary based on whether you're using a virtual environment or not. But basically the process is the same, it's just a matter of a few variables. So the first thing that I'm going to do is I'm going to build a file into my project in order to house all of my dependencies. So let me build that file and I'm going to call it requirements.txt. In my requirements.txt, I'm going to type in boto3, which is the Amazon SDK, Now in PyCharm, I can actually install this automatically by selecting this plug-in. But I want to show you how to do it. So I'm going to open up a terminal. Now you'll notice by this terminal that I'm already in a virtual environment. If you are not, you could type in source, the name of your virtual environment or the folder that it's in, bin activate and it will activate your virtual…

Contents