Files
openvino/docs/install_guides/uninstalling-openvino.md
Sebastian Golebiewski 92181b0a4b port 15720 (#15911)
Porting: https://github.com/openvinotoolkit/openvino/pull/15720/
Fixing path.
Ticket: 100955
2023-02-23 17:29:47 +04:00

1.1 KiB

Uninstalling the Intel® Distribution of OpenVINO™ Toolkit

@sphinxdirective

.. note::

Uninstallation procedures remove all Intel® Distribution of OpenVINO™ Toolkit component files but don't affect user files in the installation directory.

Uninstall Using the Original Installation Package #################################################

If you have installed OpenVINO Runtime from archive files, you can uninstall it by deleting the archive files and the extracted folders.

.. tab:: Windows

If you have created the symbolic link, remove the link first.

Use either of the following methods to delete the files:

  • Use Windows Explorer to remove the files.

  • Open a Command Prompt and run:

    .. code-block:: sh

    rmdir /s <extracted_folder> del <path_to_archive>

.. tab:: Linux & macOS

If you have created the symbolic link, remove the link first:

.. code-block:: sh

rm /opt/intel/openvino_2022

To delete the files:

.. code-block:: sh

rm -r <extracted_folder> && rm <path_to_archive>

@endsphinxdirective