port 15720 (#15911)

Porting: https://github.com/openvinotoolkit/openvino/pull/15720/
Fixing path.
Ticket: 100955
This commit is contained in:
Sebastian Golebiewski 2023-02-23 14:29:47 +01:00 committed by GitHub
parent 3373c6743f
commit 92181b0a4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,17 @@
# Uninstalling the Intel® Distribution of OpenVINO™ Toolkit {#openvino_docs_install_guides_uninstalling_openvino}
> **NOTE**: Uninstallation procedures remove all Intel® Distribution of OpenVINO™ Toolkit component files but don't affect user files in the installation directory.
@sphinxdirective
## Uninstall Using the Original Installation Package
.. 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.
@sphinxdirective
.. tab:: Windows
If you have created the symbolic link, remove the link first.
@ -15,25 +20,27 @@ If you have installed OpenVINO Runtime from archive files, you can uninstall it
* 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 /home/<USER>/intel/openvino_2022
rm /opt/intel/openvino_2022
To delete the files:
.. code-block:: sh
rm -r <extracted_folder> && rm <path_to_archive>
@endsphinxdirective