This is a preview of the video course, "Managing Dependencies With Python Poetry." When your Python project relies on external packages, you need to make sure you’re using the right version of each package. After an update, a package might not work as it did before. A dependency manager like Python Poetry helps you specify, install, and resolve external packages in your projects.
This is a portion of the complete course, which you can find here:
https://realpython.com/courses/managing-dependencies-with-poetry/
The rest of the course covers:
- Adding Poetry to an existing project
- Configuring your project through pyproject.toml
- Pinning your project’s dependency versions
- Installing dependencies from a poetry.lock file
- Running basic Poetry commands using the Poetry CLI