Skip to the content.

Environments for python

A virtual environment is a Python tool for dependency management and project isolation. They allow Python site packages (third party libraries) to be installed locally in an isolated directory for a particular project, as opposed to being installed globally (i.e. as part of a system-wide Python).
Source

Adventages of using virtual environments

Conda environments

@Mátyás

venv vs virtualenv

virtualenv

venv


Requirement files

pip freeze > requirement.txt

Using git

Never commit the environment!
Commit the requirement.txt file!

Environmental variables

import os
from getpass import getpass

# Method1: get pw from user
pw = getpass("Enter password...")

# Method2: load from environmental variable
pw = os.getenv("MY_SECRET_PASSWORD")

Possible issues