diff --git a/docs/install_guides/installing-openvino-apt.md b/docs/install_guides/installing-openvino-apt.md index 758e8880713..5da2aac342a 100644 --- a/docs/install_guides/installing-openvino-apt.md +++ b/docs/install_guides/installing-openvino-apt.md @@ -231,8 +231,8 @@ Now that you've installed OpenVINO Runtime, you're ready to run your own machine * Try the `C++ Quick Start Example `_ for step-by-step instructions on building and running a basic image classification C++ application. - .. image:: https://user-images.githubusercontent.com/36741649/127170593-86976dc3-e5e4-40be-b0a6-206379cd7df5.jpg - :width: 400 + .. image:: https://user-images.githubusercontent.com/36741649/127170593-86976dc3-e5e4-40be-b0a6-206379cd7df5.jpg + :width: 400 * Visit the :ref:`Samples ` page for other C++ example applications to get you started with OpenVINO, such as: * `Basic object detection with the Hello Reshape SSD C++ sample `_ diff --git a/docs/install_guides/installing-openvino-from-archive-windows.md b/docs/install_guides/installing-openvino-from-archive-windows.md index a318061cac2..34d23034398 100644 --- a/docs/install_guides/installing-openvino-from-archive-windows.md +++ b/docs/install_guides/installing-openvino-from-archive-windows.md @@ -44,55 +44,76 @@ See the [Release Notes](https://www.intel.com/content/www/us/en/developer/articl ### Step 1: Download and Install OpenVINO Core Components -1. Create an `Intel` folder in the `C:\Program Files (x86)\` directory. Skip this step if the folder already exists. +@sphinxdirective - You can also do this via command-lines. Open a new command prompt window as administrator by right-clicking **Command Prompt** from the Start menu and select **Run as administrator**, and then run the following command: - ```sh - mkdir "C:\Program Files (x86)\Intel" - ``` - > **NOTE**: `C:\Program Files (x86)\Intel` is the recommended folder. You may also use a different path if desired or if you don't have administrator privileges on your computer. +1. Create an ``Intel`` folder in the ``C:\Program Files (x86)\`` directory. Skip this step if the folder already exists. -2. Download the [OpenVINO Runtime archive file for Windows](https://storage.openvinotoolkit.org/repositories/openvino/packages/2022.3.1/windows/) to your local `Downloads` folder. + You can also do this via command-lines. Open a new command prompt window as an administrator by right-clicking **Command Prompt** from the Start menu and select **Run as administrator**, and then run the following command: + + .. code-block:: sh + + mkdir "C:\Program Files (x86)\Intel" + + .. note:: + + ``C:\Program Files (x86)\Intel`` is the recommended folder. You may also use a different path if desired or if you don't have administrator privileges on your computer. + +2. Download the `OpenVINO Runtime archive file for Windows `__ to your local ``Downloads`` folder. If you prefer using command-lines, run the following commands in the command prompt window you opened: - ```sh - cd /Downloads - curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2022.3.1/windows/w_openvino_toolkit_windows_2022.3.1.9227.cf2c7da5689_x86_64.zip --output openvino_2022.3.1.zip - ``` + .. code-block:: sh - > **NOTE**: A `.sha256` file is provided together with the archive file to validate your download process. To do that, download the `.sha256` file from the same repository and run `CertUtil -hashfile openvino_2022.3.0.zip SHA256`. Compare the returned value in the output with what's in the `.sha256` file: if the values are the same, you have downloaded the correct file successfully; if not, create a Support ticket [here](https://www.intel.com/content/www/us/en/support/contact-intel.html). + cd /Downloads + curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2022.3.1/windows/w_openvino_toolkit_windows_2022.3.1.9227.cf2c7da5689_x86_64.zip --output openvino_2022.3.1.zip -3. Use your favorite tool to extract the archive file, rename the extracted folder, and move it to the `C:\Program Files (x86)\Intel` directory. + .. note:: + + A ``.sha256`` file is provided together with the archive file to validate your download process. To do that, download the ``.sha256`` file from the same repository and run ``CertUtil -hashfile openvino_2022.3.1.zip SHA256``. Compare the returned value in the output with what's in the ``.sha256`` file: if the values are the same, you have downloaded the correct + file successfully; if not, create a Support ticket `here `__. + + +3. Use your favorite tool to extract the archive file, rename the extracted folder, and move it to the ``C:\Program Files (x86)\Intel`` directory. To do this step using command-lines, run the following commands in the command prompt window you opened: - ```sh - tar -xf openvino_2022.3.1.zip - ren w_openvino_toolkit_windows_2022.3.1.9227.cf2c7da5689_x86_64 openvino_2022.3.1 - move openvino_2022.3.1 "C:\Program Files (x86)\Intel" - ``` + + .. code-block:: sh + + tar -xf openvino_2022.3.1.zip + ren w_openvino_toolkit_windows_2022.3.1.9227.cf2c7da5689_x86_64 openvino_2022.3.1 + move openvino_2022.3.1 "C:\Program Files (x86)\Intel" + 6. (Optional) Install *numpy* Python Library: - > **NOTE**: This step is required only when you decide to use Python API. + .. note:: + + This step is required only when you decide to use Python API. You can use the ``requirements.txt`` file from the ``C:\Program Files (x86)\Intel\openvino_2022.3.1\python\python.`` folder: - ``` - cd "C:\Program Files (x86)\Intel\openvino_2022.3.1" - python -m pip install -r .\python\python3.\requirements.txt - ``` + .. code-block:: sh + + cd "C:\Program Files (x86)\Intel\openvino_2022.3.1" + python -m pip install -r .\python\python3.\requirements.txt + 5. For simplicity, it is useful to create a symbolic link. Open a command prompt window as administrator (see Step 1 for how to do this) and run the following commands: - ```sh - cd C:\Program Files (x86)\Intel - mklink /D openvino_2022 openvino_2022.3.0 - ``` - > **NOTE**: If you have already installed a previous release of OpenVINO 2022, a symbolic link to the `openvino_2022` folder may already exist. If you want to override it, nagivate to the `C:\Program Files (x86)\Intel` folder and delete the existing linked folder before running the `mklink` command. + + .. code-block:: sh + + cd C:\Program Files (x86)\Intel + mklink /D openvino_2022 openvino_2022.3.0 + + .. note:: + + If you have already installed a previous release of OpenVINO 2022, a symbolic link to the ``openvino_2022`` folder may already exist. If you want to override it, navigate to the ``C:\Program Files (x86)\Intel`` folder and delete the existing linked folder before running the ``mklink`` command. -Congratulations, you finished the installation! The `C:\Program Files (x86)\Intel\openvino_2022` folder now contains the core components for OpenVINO. If you used a different path in Step 1, you will find the `openvino_2022` folder there. The path to the `openvino_2022` directory is also referred as `` throughout the OpenVINO documentation. +Congratulations, you finished the installation! The ``C:\Program Files (x86)\Intel\openvino_2022`` folder now contains the core components for OpenVINO. If you used a different path in Step 1, you will find the ``openvino_2022`` folder there. The path to the ``openvino_2022`` directory is also referred as ```` throughout the OpenVINO documentation. + +@endsphinxdirective ### Step 2: Configure the Environment