Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AUTO-PR] Blog - How to Create a Python Virtual Environment with virtualenv - CTA change #38

Open
wants to merge 1 commit into
base: sam/blog-python-virtualenv
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions blog/_posts/2024-06-13-python-virtualenv.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down