Guest User

Untitled

a guest
Jul 21st, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. # an example checking if the pandas package is installed
  2. if python -c 'import pkgutil; exit(not pkgutil.find_loader("pandas"))'; then
  3. echo 'pandas found'
  4. else
  5. echo 'pandas not found'
  6. fi
Add Comment
Please, Sign In to add comment