Last active
January 16, 2021 13:23
-
-
Save bsmagic/e3dd55f5b1ab02391a0d135dc71c076d to your computer and use it in GitHub Desktop.
Check Pip version
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 numpy as np | |
| import scipy as sp | |
| import pandas as pd | |
| import pip | |
| if pip.__version__ >= "10.0.0": | |
| from pip._internal.utils.misc import get_installed_distributions | |
| else: | |
| from pip import get_installed_distributions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment