Skip to main content

Creating and Activating Python Virtual Environments with venv

While there are many powerful tools available, such as conda, pyenv, and Poetry, each offering unique features, when it comes to getting a simple project up and running, nothing beats python3 -m venv myenv.

One of the simplest yet most effective ways to manage project specific dependencies in Python is by using the built-in venv module. This approach keeps your project environment isolated from your system-wide Python installation and helps avoid dependency conflicts.

Why Use venv?

  • Isolation: Each project gets its own environment, ensuring that dependencies don’t clash between projects.

  • Simplicity: No additional tools are required—venv is included with Python.

  • Control: Easily create, activate, and deactivate environments as needed.


Step-by-Step Guide:

1. Create the Virtual Environment

In your project directory, run:

python3 -m venv myenv

This command creates a new directory named myenv containing a separate Python interpreter, libraries, and scripts.

2. Activate the Virtual Environment

To start using the virtual environment, activate it with:

source myenv/bin/activate

After activation, your terminal prompt should change to indicate that you’re working inside the myenv environment.

3. Work Within the Environment

With the environment activated, install packages and run your scripts without affecting your global Python setup. For example:

pip install requests

4. Deactivate the Virtual Environment

Once you’re done working, simply run:

deactivate

Final Thoughts

Using Python’s venv is a lightweight and effective way to maintain clean project environments. Whether you're juggling multiple projects or just want to avoid dependency conflicts, this simple approach has you covered. While there are many advanced tools out there, sometimes the simplest method is the best for getting up and running quickly.

Happy coding!


Post Tags: