Skip to content

Instantly share code, notes, and snippets.

@cirrusUK
Created April 10, 2020 15:58
Show Gist options
  • Save cirrusUK/9ecb5e7ee716d4afc43c26d4c501e532 to your computer and use it in GitHub Desktop.
Save cirrusUK/9ecb5e7ee716d4afc43c26d4c501e532 to your computer and use it in GitHub Desktop.
show if virtualenv is activated
#!/usr/bin/python
import os
if os.getenv('VIRTUAL_ENV'):
print('Virtualenv Is Active')
else:
print('Virtualenv Is Not Active')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment