0

I have a Jupyter notebook (in Google Cloud Datalab) with a python3 kernel. In that notebook

import urllib3

produces ImportError: No module named 'urllib3', but

%%bash
pip list | grep urllib3

produces urllib3 (1.22). What is going on here? Why can I not import from urllib3 in this notebook?

Drux
  • 11,992
  • 13
  • 66
  • 116

1 Answers1

0

Try pip3 to see all python3 packages

YGouddi
  • 341
  • 2
  • 14