containers icon indicating copy to clipboard operation
containers copied to clipboard

databricksruntime/python:12.2-LTS: seaborn ModuleNotFoundError

Open marcindulak opened this issue 1 year ago • 0 comments

The list of packages at https://docs.databricks.com/en/release-notes/runtime/12.2lts.html includes seaborn 0.11.2, however it's not present in the container images (checked for example databricksruntime/python:13.3-LTS)

IMAGE=databricksruntime/python:12.2-LTS
docker run --rm -it --name databricks  $IMAGE bash -c "/databricks/python3/bin/python --version"
docker run --rm -it --name databricks  $IMAGE bash -c "/databricks/python3/bin/pip --version"
docker run --rm -it --name databricks  $IMAGE bash -c "/databricks/python3/bin/python -c 'import seaborn'"

Output

Python 3.9.5
pip 21.2.4 from /databricks/python3/lib/python3.9/site-packages/pip (python 3.9)
Traceback (most recent call last):
  File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'seaborn'

marcindulak avatar Nov 14 '23 19:11 marcindulak