Skip to content

Instantly share code, notes, and snippets.

@cournape
Created July 14, 2014 06:12
Show Gist options
  • Save cournape/3c046e562c35c82c8dd3 to your computer and use it in GitHub Desktop.
Save cournape/3c046e562c35c82c8dd3 to your computer and use it in GitHub Desktop.
venv detection
import sys
if hasattr(sys, "real_prefix"):
print("Using virtualenv.")
elif hasattr(sys, "base_prefix"):
print("Using venv.")
else:
print("Not in venv/virtualenv.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment