From 70b2070e4d7b9bb50f0541ada47e06ffac15deb0 Mon Sep 17 00:00:00 2001 From: Kai Huang Date: Tue, 2 Aug 2022 12:24:52 +0800 Subject: [PATCH] Update Python User Guide (#5275) * add doc * fix --- docs/readthedocs/source/doc/UserGuide/python.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/readthedocs/source/doc/UserGuide/python.md b/docs/readthedocs/source/doc/UserGuide/python.md index ddbcf44e..a11faff2 100644 --- a/docs/readthedocs/source/doc/UserGuide/python.md +++ b/docs/readthedocs/source/doc/UserGuide/python.md @@ -57,7 +57,7 @@ Or you can add the option `-i https://pypi.python.org/simple` when pip install t You could uninstall all the packages of BigDL as follows: ```bash -pip uninstall bigdl-dllib bigdl-tf bigdl-math bigdl-orca bigdl-chronos bigdl-friesian bigdl-nano bigdl-serving bigdl +pip uninstall bigdl-dllib bigdl-core bigdl-tf bigdl-math bigdl-orca bigdl-chronos bigdl-friesian bigdl-nano bigdl-serving bigdl ``` #### **1.3 BigDL on Spark 3** @@ -69,6 +69,11 @@ pip install --pre --upgrade bigdl-spark3 # Install the latest nightly build ver ``` You can find the list of the nightly build versions built on top of Spark 3.1.2 [here](https://pypi.org/project/bigdl-spark3/#history). +You could uninstall all the packages of BigDL on Spark3 as follows: + +```bash +pip uninstall bigdl-dllib-spark3 bigdl-core bigdl-tf bigdl-math bigdl-orca-spark3 bigdl-chronos-spark3 bigdl-friesian-spark3 bigdl-nano bigdl-serving bigdl-spark3 +``` --- ### **2. Run**