Added uninstallation instructions (#3446)
This commit is contained in:
parent
9d4b778234
commit
4a6e153d5a
@ -71,7 +71,8 @@ This guide provides step-by-step instructions on how to install the Intel® Dist
|
||||
8. <a href="#install-VPU">Steps for Intel® Vision Accelerator Design with Intel® Movidius™ VPU</a><br>
|
||||
After installing your Intel® Movidius™ VPU, you will return to this guide to complete OpenVINO™ installation.
|
||||
9. <a href="#run-a-sample">Run a Sample Application</a>
|
||||
10. <a href="#Hello-World-Face-Detection-Tutorial">Use the Face Detection Tutorial</a>
|
||||
10. <a href="#uninstall">Uninstall the Intel® Distribution of OpenVINO™ Toolkit.</a>
|
||||
11. <a href="#Hello-World-Face-Detection-Tutorial">Use the Face Detection Tutorial</a>
|
||||
|
||||
## <a name="install-openvino"></a>Install the Intel® Distribution of OpenVINO™ Toolkit Core Components
|
||||
|
||||
@ -102,7 +103,7 @@ toolkit installed, rename or delete these two directories:
|
||||
|
||||
**Installation Notes:**
|
||||
- Choose an installation option and run the related script as root.
|
||||
- You can use either a GUI installation wizard or command-line instructions (CLI).
|
||||
- You can use either a GUI installation wizard or command line instructions (CLI).
|
||||
- Screenshots are provided for the GUI, but not for CLI. The following information also applies to CLI and will be helpful to your installation where you will be presented with the same choices and tasks.
|
||||
|
||||
5. Choose your installation option:
|
||||
@ -110,11 +111,11 @@ toolkit installed, rename or delete these two directories:
|
||||
```sh
|
||||
sudo ./install_GUI.sh
|
||||
```
|
||||
- **Option 2:** Command-Line Instructions:
|
||||
- **Option 2:** Command Line Instructions:
|
||||
```sh
|
||||
sudo ./install.sh
|
||||
```
|
||||
- **Option 3:** Command-Line Silent Instructions:
|
||||
- **Option 3:** Command Line Silent Instructions:
|
||||
```sh
|
||||
sudo sed -i 's/decline/accept/g' silent.cfg
|
||||
sudo ./install.sh -s silent.cfg
|
||||
@ -128,16 +129,15 @@ messages such as the following in case you must complete additional
|
||||
steps:
|
||||

|
||||
|
||||
7. If you select the default options, the **Installation summary** GUI screen
|
||||
looks like this:
|
||||
7. If you select the default options, the **Installation summary** GUI screen looks like this:
|
||||

|
||||
- **Optional:** You can choose **Customize** to change the installation directory or the components you want to install:
|
||||

|
||||
When installed as **root** the default installation directory for the Intel Distribution of OpenVINO is
|
||||
`/opt/intel/openvino_<version>/`.<br>
|
||||
For simplicity, a symbolic link to the latest installation is also created: `/opt/intel/openvino_2021/`.
|
||||
**Optional:** You can choose **Customize** to change the installation directory or the components you want to install:
|
||||

|
||||
By default, the Intel® Distribution of OpenVINO™ is installed to the following directory, referred to as `<INSTALL_DIR>`:
|
||||
- For root or administrator: `/opt/intel/openvino_<version>/`
|
||||
- For regular users: `/home/<USER>/intel/openvino_<version>/`
|
||||
For simplicity, a symbolic link to the latest installation is also created: `/opt/intel/openvino_2021/`.
|
||||
> **NOTE**: The Intel® Media SDK component is always installed in the `/opt/intel/mediasdk` directory regardless of the OpenVINO installation path chosen.
|
||||
|
||||
8. A Complete screen indicates that the core components have been installed:
|
||||
|
||||

|
||||
@ -441,6 +441,32 @@ Congratulations, you have finished the installation of the Intel® Distribution
|
||||
|
||||
See the [OpenVINO™ Hello World Face Detection Exercise](https://github.com/intel-iot-devkit/inference-tutorials-generic).
|
||||
|
||||
## <a name="uninstall"></a>Uninstall the Intel® Distribution of OpenVINO™ Toolkit
|
||||
Choose one of the options provided below to uninstall the Intel® Distribution of OpenVINO™ Toolkit from your system.
|
||||
|
||||
### Uninstall with GUI
|
||||
1. Run the uninstallation script from `<INSTALL_DIR>/openvino_toolkit_uninstaller`:
|
||||
```sh
|
||||
sudo ./uninstall_GUI.sh
|
||||
```
|
||||
2. Follow the uninstallation wizard instructions.
|
||||
|
||||
|
||||
### Uninstall with Command Line (Interactive Mode)
|
||||
1. Run the uninstallation script from `<INSTALL_DIR>/openvino_toolkit_uninstaller`:
|
||||
```sh
|
||||
sudo ./uninstall.sh
|
||||
```
|
||||
2. Follow the instructions on your screen.
|
||||
4. When uninstallation is complete, press **Enter**.
|
||||
|
||||
### Uninstall with Command Line (Silent Mode)
|
||||
1. Run the following command from `<INSTALL_DIR>/openvino_toolkit_uninstaller`:
|
||||
```sh
|
||||
sudo ./uninstall.sh -s
|
||||
```
|
||||
2. Intel® Distribution of OpenVINO™ Toolkit is now uninstalled from your system.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
PRC developers might encounter pip installation related issues during OpenVINO™ installation. To resolve the issues, you may use one of the following options at your discretion:
|
||||
|
@ -66,6 +66,7 @@ The following steps will be covered:
|
||||
2. <a href="#set-the-environment-variables">Set the OpenVINO environment variables and (optional) Update to <code>.bash_profile</code></a>.
|
||||
4. <a href="#configure-the-model-optimizer">Configure the Model Optimizer</a>.
|
||||
5. <a href="#Run-Demos">Run verification scripts to verify installation and compile samples</a>.
|
||||
6. <a href="#uninstall">Uninstall the Intel® Distribution of OpenVINO™ Toolkit</a>.
|
||||
|
||||
## <a name="Install-Core"></a>Install the Intel® Distribution of OpenVINO™ toolkit Core Components
|
||||
|
||||
@ -104,13 +105,12 @@ The disk image is mounted to `/Volumes/m_openvino_toolkit_p_<version>` and autom
|
||||
8. The **Installation summary** screen shows you the default component set to install:
|
||||

|
||||
|
||||
- If you used **root** or **administrator** privileges to run the installer, it installs the OpenVINO toolkit to `/opt/intel/openvino_<version>/`
|
||||
By default, the Intel® Distribution of OpenVINO™ is installed to the following directory, referred to as `<INSTALL_DIR>`:
|
||||
|
||||
For simplicity, a symbolic link to the latest installation is also created: `/opt/intel/openvino_2021/`
|
||||
* For root or administrator: `/opt/intel/openvino_<version>/`
|
||||
* For regular users: `/home/<USER>/intel/openvino_<version>/`
|
||||
|
||||
- If you used **regular user** privileges to run the installer, it installs the OpenVINO toolkit to `/home/<user>/intel/openvino_<version>/`
|
||||
|
||||
For simplicity, a symbolic link to the latest installation is also created: `/home/<user>/intel/openvino_2021/`
|
||||
For simplicity, a symbolic link to the latest installation is also created: `/home/<user>/intel/openvino_2021/`.
|
||||
|
||||
9. If needed, click **Customize** to change the installation directory or the components you want to install:
|
||||

|
||||
@ -295,6 +295,14 @@ brew install libusb
|
||||
|
||||
Visit the Intel Distribution of OpenVINO Toolkit [Inference Tutorials for Face Detection and Car Detection Exercises](https://github.com/intel-iot-devkit/inference-tutorials-generic/tree/openvino_toolkit_r3_0)
|
||||
|
||||
## <a name="uninstall"></a>Uninstall the Intel® Distribution of OpenVINO™ Toolkit
|
||||
|
||||
Follow the steps below to uninstall the Intel® Distribution of OpenVINO™ Toolkit from your system:
|
||||
|
||||
1. From the `<INSTALL_DIR>`, locate and open `openvino_toolkit_uninstaller.app`.
|
||||
2. Follow the uninstallation wizard instructions.
|
||||
3. When uninstallation is complete, click **Finish**.
|
||||
|
||||
|
||||
## Additional Resources
|
||||
|
||||
|
@ -36,6 +36,8 @@ Your installation is complete when these are all completed:
|
||||
|
||||
- <a href="#Update-Path">Update Windows* environment variables</a>
|
||||
|
||||
7. <a href="#uninstall">Uninstall the Intel® Distribution of OpenVINO™ Toolkit</a>
|
||||
|
||||
### About the Intel® Distribution of OpenVINO™ toolkit
|
||||
|
||||
OpenVINO™ toolkit is a comprehensive toolkit for quickly developing applications and solutions that solve a variety of tasks including emulation of human vision, automatic speech recognition, natural language processing, recommendation systems, and many others. Based on latest generations of artificial neural networks, including Convolutional Neural Networks (CNNs), recurrent and attention-based networks, the toolkit extends computer vision and non-vision workloads across Intel® hardware, maximizing performance. It accelerates applications with high-performance, AI and deep learning inference deployed from edge to cloud.
|
||||
@ -444,6 +446,12 @@ For information on Sample Applications, see the [Inference Engine Samples Overvi
|
||||
|
||||
Congratulations, you have finished the installation of the Intel® Distribution of OpenVINO™ toolkit for Windows*. To learn more about how the Intel® Distribution of OpenVINO™ toolkit works, the Hello World tutorial and other resources are provided below.
|
||||
|
||||
## <a name="uninstall"></a>Uninstall the Intel® Distribution of OpenVINO™ Toolkit
|
||||
Follow the steps below to uninstall the Intel® Distribution of OpenVINO™ Toolkit from your system:
|
||||
1. Choose the **Apps & Features** option from the Windows* Settings app.
|
||||
2. From the list of installed applications, select the Intel® Distribution of OpenVINO™ Toolkit and click **Uninstall**.
|
||||
3. Follow the uninstallation wizard instructions.
|
||||
4. When uninstallation is complete, click **Finish**.
|
||||
|
||||
## <a name="Summary"></a>Summary
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user