Skip to content
Home » Set environment variables in a Python venv (Windows)

Set environment variables in a Python venv (Windows)

This is a brief overview of the possibilities for setting environment variables in a virtual environment (venv).

Set environment variables in Python code

Environment variables can be set inside your Python script. All child processes will inherit the environment variables and their values.

import os
os.environ['COMPOSER'] = 'Tchaikovsky'

Set environment variables in activate.bat or activate.ps1

If you want to set environment variables each time the venv is started, you can assign them inside the activation script. If you’re running a PowerShell terminal, you should edit Activate.ps1 in <YOUR_ENV>/Scripts and add an extra line to set an environment variable as follows.

$env:COMPOSER = 'Rachmaninov'

If you’re running a Windows command prompt, edit activate.bat in <YOUR_ENV>/Scripts and add the following line.

set COMPOSER = 'Stravinsky'

The key-value .env file in Visual Studio Code

VS Code automatically searches for an .env file. In this file, you can specify key-value pairs that are loaded as environment variables.

COMPOSER=Borodin

Say thanks, ask questions or give feedback

Technologies get updated, syntax changes and honestly… I make mistakes too. If something is incorrect, incomplete or doesn’t work, let me know in the comments below and help thousands of visitors.

10 thoughts on “Set environment variables in a Python venv (Windows)”

  1. I lovesd as mmuch as you’ll recive carrierd outt righbt here.

    Thee sketch is attractive, your auhored material stylish.
    nonetheless, yoou commasnd gget gott an shakiness ovcer that you
    wish be delivering the following. unhwell unquestionably come further formerly again as exaxtly thee same
    nearly vry often insid casse you shield this increase.

  2. Ⲟh my goodness! Impressive article dude! Ⅿany thanks, Howеver I am going thrоugh problems with
    yoᥙr RSS. І don’t understand why I am unable to join іt.
    Iѕ thuere ɑnybody eⅼse gettіng identical RSS issues?
    Anybodxy ԝho кnows thee solution will you kindly respond?
    Ꭲhanx!!

    Look intⲟ my site; Salimbet

  3. Simply wish to say youг article iѕ as amazing. Ꭲhе
    clearness in yoᥙr post iѕ just spectacular annd і culd assume you are an expert ⲟn this subject.
    Fine wіth yоur permission ɑllow mе to grab your RSS feed to қeep
    ᥙp to date with forthcoming post. Tһanks a milli᧐n ɑnd please keep up the
    enjoyable wߋrk.

    my webpage Laskar303

  4. На этом ресурсе вы можете ознакомиться с важной информацией о терапии депрессии у пожилых людей. Здесь представлены рекомендации и описания методов борьбы с этим состоянием.
    http://blcp.ie/benefits-of-cbt/

Leave a Reply

Your email address will not be published. Required fields are marked *