From 24a62015b03465355e34bbafe4b45f76fbfdce31 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot Date: Thu, 13 Jun 2024 20:49:25 +0000 Subject: [PATCH] Automated code changes --- blog/_posts/2024-06-13-python-virtualenv.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/blog/_posts/2024-06-13-python-virtualenv.md b/blog/_posts/2024-06-13-python-virtualenv.md index 52cef385c..c93385bf5 100644 --- a/blog/_posts/2024-06-13-python-virtualenv.md +++ b/blog/_posts/2024-06-13-python-virtualenv.md @@ -12,7 +12,10 @@ internal-links: categories: - python-tooling - python +excerpt: | + Virtual environments in Python allow developers to create isolated environments for their projects, ensuring that each project has its own set of dependencies. The article explains how to create and manage virtual environments using virtualenv, a popular tool known for its simplicity and compatibility with older versions of Python. --- +**This article explains the role of Python virtual environments. Earthly ensures consistent builds for your Python projects, enhancing virtualenv's dependency management. [Check it out](https://cloud.earthly.dev/login).** Managing dependencies for multiple projects is a common challenge for developers, particularly in Python, where all dependencies are installed globally by default. Imagine working on multiple projects, each requiring different versions of the same library or even different versions of Python. If not properly isolated, these dependencies may clash, causing various problems and wasting valuable project time debugging the issues.