Can you add conda environment support? per [this](https://stackoverflow.com/questions/47608532/how-to-detect-from-within-python-whether-packages-are-managed-with-conda/47610844#47610844) post: This works: ``` import sys, os is_conda = os.path.exists(os.path.join(sys.prefix, 'conda-meta')) ``` verified it on a conda environment with python 2.7 and python 3.6