From ab250419b84f02563c71e071827e38ffed51f035 Mon Sep 17 00:00:00 2001 From: gaikwadrahul8 <115997457+gaikwadrahul8@users.noreply.github.com> Date: Fri, 30 Dec 2022 18:17:32 +0530 Subject: [PATCH] Updated Uninstall shapely package section in the notebook Recently we have made changes in our TFX tutorials to run as expected by uninstalling shapely package and that section is missing in this tutorial so I added that section now --- docs/examples/ranking_tfx.ipynb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/examples/ranking_tfx.ipynb b/docs/examples/ranking_tfx.ipynb index a1741087..fb73e35e 100644 --- a/docs/examples/ranking_tfx.ipynb +++ b/docs/examples/ranking_tfx.ipynb @@ -126,6 +126,31 @@ "!pip install -U tfx\n", "!pip install -U tensorflow-recommenders" ] + }, + { + "cell_type": "markdown", + "source": [ + "### Uninstall shapely\n", + "\n", + "TODO(b/263441833) This is a temporal solution to avoid an\n", + "ImportError. Ultimately, it should be handled by supporting a\n", + "recent version of Bigquery, instead of uninstalling other extra\n", + "dependencies." + ], + "metadata": { + "id": "DCa5Bs00k3ZR" + } + }, + { + "cell_type": "code", + "source": [ + "!pip uninstall shapely -y" + ], + "metadata": { + "id": "mYn4k-r-k3qN" + }, + "execution_count": null, + "outputs": [] }, { "cell_type": "markdown",