@Hitesh Goswami : please check if the below helps!
To upgrade the Ipython version on a Databricks 7.3LTS cluster, you can follow these steps:
- Create a new library installation command using the Databricks CLI by running the following command in your local terminal or command prompt:
databricks libraries install --cluster-id <cluster-id> --pypi-package ipython --pypi-package-version <desired-version>
Replace <cluster-id> with the ID of your Databricks cluster and <desired-version> with the desired version of Ipython that you want to install.
Once the library installation command is created, run it using the Databricks CLI by running the following command in your local terminal or command prompt:
databricks libraries install --cluster-id <cluster-id> --pypi-package ipython --pypi-package-version <desired-version> --whl <path-to-wheel-file>
Replace <cluster-id> with the ID of your Databricks cluster, <desired-version> with the desired version of Ipython that you want to install, and <path-to-wheel-file> with the local path to the wheel file for the desired version of Ipython.
Note that the wheel file for the desired version of Ipython can be found on the PyPI website.
Restart the cluster to apply the changes.