13 lines
331 B
Python
13 lines
331 B
Python
"""
|
|
homeassistant.util.environement
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
Environement helpers.
|
|
"""
|
|
import sys
|
|
|
|
|
|
def is_virtual():
|
|
""" Return if we run in a virtual environtment. """
|
|
# Check supports venv && virtualenv
|
|
return (getattr(sys, 'base_prefix', sys.prefix) != sys.prefix or
|
|
hasattr(sys, 'real_prefix'))
|