Created
March 21, 2019 03:25
-
-
Save rssanders3/b1de6f9cebf409362c6f667aa871e6e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import site | |
| import os | |
| SITE_PACKAGES = site.getsitepackages() | |
| print "All Site Packages: " + str(SITE_PACKAGES) | |
| for site_package in SITE_PACKAGES: | |
| test_path = site_package + "/airflow" | |
| if os.path.exists(test_path): | |
| AIRFLOW_INSTALL_DIR = test_path | |
| print "Site Page Containing Airflow: " + str(AIRFLOW_INSTALL_DIR) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment