From the course: Advanced SQL for Application Development

Unlock the full course today

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

Installing SQLAlchemy

Installing SQLAlchemy

From the course: Advanced SQL for Application Development

Start my 1-month free trial

Installing SQLAlchemy

- [Instructor] Let's take a look at installing SQLAlchemy. You know, the first thing, I'm assuming that you have Python installed, and you can always check by using the which Python command in Macro Linux. And I do have Python installed, and so the next thing I want to do, then, is use the pip command, and what I will do is do a pip, which is the Python package installer. And I'll specify install, and I'm going to specify SQLAlchemy. And this will download SQLAlchemy and install it for me. Now, at this point, it looks like everything successfully installed, so I'm just going to check. Going to type python3, start up Python. And I'm going to import SQLAlchemy. And pretty much just print out the version number. And I'll just make sure, okay, 1.3.15, I believe that's the latest, so I think we're in good shape. And that's what we expected, given the results. So that's basically all that's required to install SQLAlchemy, as…

Contents